ngine_io.cloudstack.cs_account 模块 – 管理基于 Apache CloudStack 的云上的账户。
注意
此模块是 ngine_io.cloudstack 集合(版本 2.5.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了这个集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install ngine_io.cloudstack
。您需要其他要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:ngine_io.cloudstack.cs_account
。
ngine_io.cloudstack 0.1.0 中的新功能
概要
创建、禁用、锁定、启用和删除账户。
要求
执行此模块的主机需要以下要求。
python >= 2.6
cs >= 0.9.0
参数
参数 |
注释 |
---|---|
账户的类型。 选择
|
|
用于查询 API 端点的 HTTP 方法。 如果未给出,则会考虑 选择
|
|
CloudStack API 的 API 密钥。 如果未给出,则会考虑 |
|
CloudStack API 的密钥。 如果未设置,则会考虑 |
|
HTTP 超时时间(以秒为单位)。 如果未给出,则会考虑 默认值: |
|
CloudStack API 的 URL,例如 https://cloud.example.com/client/api。 如果未给出,则会考虑 |
|
验证 CA 授权证书文件。 如果未给出,则会考虑 |
|
账户所属的域。 默认值: |
|
如果要创建账户,则用户的电子邮件。 如果未设置 ldap_domain,则在 state=present 时是必需的。 |
|
如果要创建账户,则用户的名字。 如果未设置 ldap_domain,则在 state=present 时是必需的。 |
|
如果要创建账户,则用户的姓氏。 如果未设置 ldap_domain,则在 state=present 时是必需的。 |
|
要绑定的 LDAP 组或 OU 的名称。 如果设置,则账户将链接到 LDAP。 |
|
ldap 名称的类型。GROUP 或 OU,默认为 GROUP。 选择
|
|
账户的名称。 |
|
账户的网络域。 |
|
如果要创建账户,则用户的密码。 如果未设置 ldap_domain,则在 state=present 时是必需的。 |
|
轮询异步作业,直到作业完成。 选择
|
|
在指定的角色名称或 ID 下创建账户。 |
|
账户的状态。
选择
|
|
如果要创建账户,则用户的时区。 |
|
如果要创建账户,则用户的用户名。 在 state=present 时是必需的。 |
|
如果 如果未给出,则会考虑 这应该仅在个人控制的使用自签名证书的站点上使用。 选择
|
说明
注意
有关 cloudstack 模块的详细指南,请参阅 CloudStack 云指南。
此模块支持检查模式。
示例
- name: create an account in domain 'CUSTOMERS'
ngine_io.cloudstack.cs_account:
name: customer_xy
username: customer_xy
password: S3Cur3
last_name: Doe
first_name: John
email: [email protected]
domain: CUSTOMERS
role: Domain Admin
- name: Lock an existing account in domain 'CUSTOMERS'
ngine_io.cloudstack.cs_account:
name: customer_xy
domain: CUSTOMERS
state: locked
- name: Disable an existing account in domain 'CUSTOMERS'
ngine_io.cloudstack.cs_account:
name: customer_xy
domain: CUSTOMERS
state: disabled
- name: Enable an existing account in domain 'CUSTOMERS'
ngine_io.cloudstack.cs_account:
name: customer_xy
domain: CUSTOMERS
state: enabled
- name: Remove an account in domain 'CUSTOMERS'
ngine_io.cloudstack.cs_account:
name: customer_xy
domain: CUSTOMERS
state: absent
- name: Create a single user LDAP account in domain 'CUSTOMERS'
ngine_io.cloudstack.cs_account:
name: customer_xy
username: customer_xy
domain: CUSTOMERS
ldap_domain: cn=customer_xy,cn=team_xy,ou=People,dc=domain,dc=local
- name: Create a LDAP account in domain 'CUSTOMERS' and bind it to a LDAP group
ngine_io.cloudstack.cs_account:
name: team_xy
username: customer_xy
domain: CUSTOMERS
ldap_domain: cn=team_xy,ou=People,dc=domain,dc=local
返回值
通用返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
账户的类型。 已返回:成功 示例: |
|
账户所属的域。 已返回:成功 示例: |
|
账户的 UUID。 已返回:成功 示例: |
|
账户的网络域。 已返回:成功 示例: |
|
账户的角色名称 已返回:成功 示例: |
|
账户的状态。 已返回:成功 示例: |