na_elementsw_account - NetApp Element Software Manage Accounts
- Create, destroy, or update accounts on Element SW
The below requirements are needed on the host that executes this module.
- The modules were developed with SolidFire 10.1
- solidfire-sdk-python (1.1.0.92) or greater. Install using ‘pip install solidfire-sdk-python’
Parameter |
Choices/Defaults |
Comments |
account_id
|
|
The ID of the account to manage or update.
|
attributes
|
|
List of Name/Value pairs in JSON object format.
|
element_username
required |
|
Unique username for this account. (May be 1 to 64 characters in length).
|
hostname
required |
|
The hostname or IP address of the SolidFire cluster.
|
initiator_secret
|
|
CHAP secret to use for the initiator. Should be 12-16 characters long and impenetrable.
The CHAP initiator secrets must be unique and cannot be the same as the target CHAP secret.
If not specified, a random secret is created.
|
new_element_username
|
|
New name for the user account.
|
password
required |
|
Password for the specified user.
aliases: pass
|
state
required |
|
Whether the specified account should exist or not.
|
status
|
|
Status of the account.
|
target_secret
|
|
CHAP secret to use for the target (mutual CHAP authentication).
Should be 12-16 characters long and impenetrable.
The CHAP target secrets must be unique and cannot be the same as the initiator CHAP secret.
If not specified, a random secret is created.
|
username
required |
|
aliases: user
|
Note
- The modules prefixed with na_elementsw are built to support the SolidFire storage platform.
- name: Create Account
na_elementsw_account:
hostname: "{{ elementsw_hostname }}"
username: "{{ elementsw_username }}"
password: "{{ elementsw_password }}"
state: present
element_username: TenantA
- name: Modify Account
na_elementsw_account:
hostname: "{{ elementsw_hostname }}"
username: "{{ elementsw_username }}"
password: "{{ elementsw_password }}"
state: present
element_username: TenantA
new_element_username: TenantA-Renamed
- name: Delete Account
na_elementsw_account:
hostname: "{{ elementsw_hostname }}"
username: "{{ elementsw_username }}"
password: "{{ elementsw_password }}"
state: absent
element_username: TenantA-Renamed
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is flagged as certified which means that it is maintained by an Ansible Partner. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by an Ansible Partner, see here.
Hint
If you notice any issues in this documentation you can edit this document to improve it.