ieisystem.inmanage.user – Manage user¶
Note
This plugin is part of the ieisystem.inmanage collection.
To install it use: ansible-galaxy collection install ieisystem.inmanage
.
To use it in a playbook, specify: ieisystem.inmanage.user
.
New in version 1.0.0: of ieisystem.inmanage
Requirements¶
The below requirements are needed on the host that executes this module.
Python 3.7+
inManage
Parameters¶
Examples¶
- name: User test
hosts: inmanage
no_log: true
connection: local
gather_facts: no
vars:
inmanage:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Add user"
ieisystem.inmanage.user:
state: "present"
uname: "wbs"
upass: "admin"
role_id: "Administrator"
priv: "kvm,sol"
email: "wbs@ieisystem.com"
provider: "{{ inmanage }}"
- name: "Set user"
ieisystem.inmanage.user:
state: "present"
uname: "wbs"
upass: "12345678"
role_id: "user"
priv: "kvm,sol"
provider: "{{ inmanage }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ieisystem)