New in version 2.9.
Parameter | Choices/Defaults | Comments | |
---|---|---|---|
access_time string | This parameter indicates the time the file's access time should be set to. Should be preserve when no modification is required, YYYYMMDDHHMM.SS when using default time format, or now. Default is None meaning that preserve is the default for state=[file,directory,link,hard] and now is default for state=touch | ||
aggregate list | The set of username objects to be configured on the remote ICX device. The list entries can either be the username or a hash of username and properties. This argument is mutually exclusive with the name argument.aliases: users, collection | ||
access_time string | This parameter indicates the time the file's access time should be set to. Should be preserve when no modification is required, YYYYMMDDHHMM.SS when using default time format, or now. Default is None meaning that preserve is the default for state=[file,directory,link,hard] and now is default for state=touch | ||
check_running_config boolean |
| Check running configuration. This can be set as environment variable. Module will use environment variable value(default:True), unless it is overridden, by specifying it as module parameter. | |
configured_password string | The password to be configured on the ICX device. | ||
name string / required | The username to be configured on the ICX device. | ||
nopassword boolean |
| Defines the username without assigning a password. This will allow the user to login to the system without being authenticated by a password. | |
privilege string |
| The privilege level to be granted to the user | |
state string |
| Configures the state of the username definition as it relates to the device operational configuration. When set to present, the username(s) should be configured in the device active configuration and when set to absent the username(s) should not be in the device active configuration | |
update_password string |
| This argument will instruct the module when to change the password. When set to always , the password will always be updated in the device and when set to on_create the password will be updated only if the username is created. | |
check_running_config boolean |
| Check running configuration. This can be set as environment variable. Module will use environment variable value(default:True), unless it is overridden, by specifying it as module parameter. | |
configured_password string | The password to be configured on the ICX device. | ||
name string / required | The username to be configured on the ICX device. | ||
nopassword boolean |
| Defines the username without assigning a password. This will allow the user to login to the system without being authenticated by a password. | |
privilege string |
0 | The privilege level to be granted to the user | |
purge boolean |
| If set to true module will remove any previously configured usernames on the device except the current defined set of users. | |
state string |
| Configures the state of the username definition as it relates to the device operational configuration. When set to present, the username(s) should be configured in the device active configuration and when set to absent the username(s) should not be in the device active configuration | |
update_password string |
| This argument will instruct the module when to change the password. When set to always , the password will always be updated in the device and when set to on_create the password will be updated only if the username is created. |
Note
- name: create a new user without password icx_user: name: user1 nopassword: true - name: create a new user with password icx_user: name: user1 configured_password: 'newpassword' - name: remove users icx_user: name: user1 state: absent - name: set user privilege level to 5 icx_user: name: user1 privilege: 5
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
commands list | always | The list of configuration mode commands to send to the device Sample: ['username ansible nopassword', 'username ansible password-string alethea123', 'no username ansible', 'username ansible privilege 5', 'username ansible enable'] |
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.9/modules/icx_user_module.html