na_elementsw_access_group - NetApp Element Software Manage Access Groups
- Create, destroy, or update access groups on Element Software Cluster.
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 |
attributes
|
|
List of Name/Value pairs in JSON object format.
|
hostname
required |
|
The hostname or IP address of the SolidFire cluster.
|
initiators
|
|
List of initiators to include in the access group. If unspecified, the access group will start out without configured initiators.
|
new_name
|
|
New name for the access group for create and modify operation.
Required for create operation.
|
password
required |
|
Password for the specified user.
aliases: pass
|
src_access_group_id
|
|
ID or Name of the access group to modify or delete.
Required for delete and modify operations.
|
state
required |
|
Whether the specified access group should exist or not.
|
username
required |
|
aliases: user
|
virtual_network_id
|
|
The ID of the Element SW Software Cluster Virtual Network ID to associate the access group with.
|
virtual_network_tags
|
|
The ID of the VLAN Virtual Network Tag to associate the access group with.
|
volumes
|
|
List of volumes to initially include in the volume access group. If unspecified, the access group will start without any volumes.
|
Note
- The modules prefixed with na_elementsw are built to support the SolidFire storage platform.
- name: Create Access Group
na_elementsw_access_group:
hostname: "{{ elementsw_hostname }}"
username: "{{ elementsw_username }}"
password: "{{ elementsw_password }}"
state: present
new_name: AnsibleAccessGroup
volumes: [7,8]
- name: Modify Access Group
na_elementsw_access_group:
hostname: "{{ elementsw_hostname }}"
username: "{{ elementsw_username }}"
password: "{{ elementsw_password }}"
state: present
src_access_group_id: AnsibleAccessGroup
new_name: AnsibleAccessGroup-Renamed
attributes: {"volumes": [1,2,3], "virtual_network_id": 12345}
- name: Delete Access Group
na_elementsw_access_group:
hostname: "{{ elementsw_hostname }}"
username: "{{ elementsw_username }}"
password: "{{ elementsw_password }}"
state: absent
src_access_group_id: 1
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
msg
string
|
success |
Success message
|
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.