ibm.storage_virtualize.ibm_svc_manage_usergroup 模块 – 此模块用于管理 IBM Storage Virtualize 系列系统上的用户组
注意
此模块是 ibm.storage_virtualize 集合(版本 2.5.0)的一部分。
如果您使用的是 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install ibm.storage_virtualize
。
要在 playbook 中使用它,请指定: ibm.storage_virtualize.ibm_svc_manage_usergroup
。
ibm.storage_virtualize 1.7.0 中的新功能
概要
用于管理 'mkusergrp'、'rmusergrp' 和 'chusergrp' 命令的 Ansible 接口。
参数
参数 |
注释 |
---|---|
Storage Virtualize 系统的 hostname 或管理 IP。 |
|
Storage Virtualize 系统的域。 当 hostname 用于参数 clustername 时有效。 |
|
调试日志文件的路径。 |
|
指定用户组的名称。 |
|
指定从用户组所属的所有权组中删除该用户组。 当 state=present 时适用,用于修改用户组。 参数 ownershipgroup 和 noownershipgroup 是互斥的。 选择
|
|
指定所有权组的名称。 当 state=present 时适用。 参数 ownershipgroup 和 noownershipgroup 是互斥的。 |
|
Storage Virtualize 系统的 REST API 密码。 如果未使用 token 验证用户,则需要参数 username 和 password。 |
|
指定与属于此用户组的所有用户关联的角色。 当 state=present 时必需。 选择
|
|
创建或更新 ( 选择
|
|
用于验证 Storage Virtualize 系统上用户的身份验证令牌。 要生成令牌,请使用 ibm_svc_auth 模块。 |
|
Storage Virtualize 系统的 REST API 用户名。 如果未使用 token 验证用户,则需要参数 username 和 password。 |
|
验证证书。 选择
|
注释
注意
此模块支持
check_mode
。
示例
- name: Create a user group
ibm.storage_virtualize.ibm_svc_manage_usergroup:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/playbook.debug
state: present
name: user-group-name
role: Monitor
ownershipgroup: ownershipgroup-name
- name: Remove a user group
ibm.storage_virtualize.ibm_svc_manage_usergroup:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/playbook.debug
state: absent
name: user-group-name