awx.awx.user 模块 – 创建、更新或销毁 Automation Platform Controller 用户。
注意
此模块是 awx.awx 集合(版本 24.6.1)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install awx.awx
。
要在 playbook 中使用它,请指定:awx.awx.user
。
概要
创建、更新或销毁 Automation Platform Controller 用户。有关概述,请参阅 https://ansible.org.cn/tower。
别名:tower_user
参数
参数 |
注释 |
---|---|
控制器配置文件的路径。 如果提供,则不会考虑配置文件的其他位置。 |
|
指向 Automation Platform Controller 实例的 URL。 如果未设置值,将尝试环境变量 如果未通过任何方式指定值,将使用值 |
|
要使用的 OAuth 令牌。 此值可以是以下两种格式之一。 一个字符串,即令牌本身。(即 bqV5txm97wqJqtkxlMkhQz0pKhRMMX) 一个字典结构,由令牌模块返回。 如果未设置值,将尝试环境变量 |
|
控制器实例的密码。 如果未设置值,将尝试环境变量 |
|
控制器实例的用户名。 如果未设置值,将尝试环境变量 |
|
用户的电子邮件地址。 |
|
用户的名字。 |
|
表示此用户拥有所有权限,而无需显式分配它们。 选择
|
|
用户是系统范围的审计员。 选择
|
|
用户的姓氏。 |
|
设置此选项将更改现有用户名(通过 name 字段查找)。 |
|
该用户将创建为该组织名称、ID 或已命名 URL 的成员(组织管理员创建新组织用户所必需的)。 |
|
用于更改密码的只写字段。 |
|
指定 Ansible 在对控制器主机的请求中应使用的超时。 默认为 10 秒,但这由共享的 module_utils 代码处理 |
|
资源的所需状态。 选择
|
|
选择
|
|
必需。150 个字符或更少。仅限字母、数字和 @/./+/-/_。 |
|
是否允许与 AWX 建立不安全连接。 如果为 这仅应用于使用自签名证书的个人控制站点。 如果未设置值,将尝试环境变量 选择
|
说明
注意
如果没有提供config_file,我们将尝试使用 tower-cli 库的默认设置来查找您的主机信息。
config_file 的格式应如下所示:host=hostname username=username password=password
示例
- name: Add user
user:
username: jdoe
password: foobarbaz
email: [email protected]
first_name: John
last_name: Doe
state: present
controller_config_file: "~/tower_cli.cfg"
- name: Add user as a system administrator
user:
username: jdoe
password: foobarbaz
email: [email protected]
superuser: yes
state: present
controller_config_file: "~/tower_cli.cfg"
- name: Add user as a system auditor
user:
username: jdoe
password: foobarbaz
email: [email protected]
auditor: yes
state: present
controller_config_file: "~/tower_cli.cfg"
- name: Add user as a member of an organization (permissions on the organization are required)
user:
username: jdoe
password: foobarbaz
email: [email protected]
organization: devopsorg
state: present
- name: Delete user
user:
username: jdoe
email: [email protected]
state: absent
controller_config_file: "~/tower_cli.cfg"