netapp.elementsw.na_elementsw_access_group – NetApp Element Software Manage Access Groups

From Get docs
Ansible/docs/2.11/collections/netapp/elementsw/na elementsw access group module


netapp.elementsw.na_elementsw_access_group – NetApp Element Software Manage Access Groups

Note

This plugin is part of the netapp.elementsw collection (version 20.11.0).

To install it use: ansible-galaxy collection install netapp.elementsw.

To use it in a playbook, specify: netapp.elementsw.na_elementsw_access_group.


New in version 2.7.0: of netapp.elementsw


Synopsis

  • Create, destroy, or update access groups on Element Software Cluster.

Requirements

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’

Parameters

Parameter Choices/Defaults Comments

account_id

string

added in 2.8.0 of netapp.elementsw

Account ID for the owner of this volume.

It accepts either account_name or account_id

if account_id is digit, it will consider as account_id

If account_id is string, it will consider as account_name

attributes

dictionary

List of Name/Value pairs in JSON object format.

from_name

string

added in 2.8.0 of netapp.elementsw

ID or Name of the access group to rename.

Required to create a new access group called 'name' by renaming 'from_name'.

hostname

string / required

The hostname or IP address of the SolidFire cluster.

For na_elementsw_cluster, the Management IP (MIP) or hostname of the node to initiate the cluster creation from.

initiators

list / elements=string

List of initiators to include in the access group. If unspecified, the access group will start out without configured initiators.

name

string / required

Name for the access group for create, modify and delete operations.


aliases: src_access_group_id

password

string / required

Password for the specified user.


aliases: pass

state

string

  • present

  • absent

Whether the specified access group should exist or not.

username

string / required

Please ensure that the user has the adequate permissions. For more information, please read the official documentation https://mysupport.netapp.com/documentation/docweb/index.html?productID=62636&language=en-US.


aliases: user

virtual_network_id

integer

The ID of the Element SW Software Cluster Virtual Network to associate the access group with.

virtual_network_tags

list / elements=string

The tags of VLAN Virtual Network Tag to associate the access group with.

volumes

list / elements=string

List of volumes to initially include in the volume access group. If unspecified, the access group will start without any volumes.

It accepts either volume_name or volume_id



Notes

Note

  • The modules prefixed with na\_elementsw are built to support the SolidFire storage platform.


Examples

- name: Create Access Group
  na_elementsw_access_group:
    hostname: "{{ elementsw_hostname }}"
    username: "{{ elementsw_username }}"
    password: "{{ elementsw_password }}"
    state: present
    name: AnsibleAccessGroup
    volumes: [7,8]
    account_id: 1

- name: Modify Access Group
  na_elementsw_access_group:
    hostname: "{{ elementsw_hostname }}"
    username: "{{ elementsw_username }}"
    password: "{{ elementsw_password }}"
    state: present
    name: AnsibleAccessGroup-Renamed
    account_id: 1
    attributes: {"volumes": [1,2,3], "virtual_network_id": 12345}

- name: Rename Access Group
  na_elementsw_access_group:
    hostname: "{{ elementsw_hostname }}"
    username: "{{ elementsw_username }}"
    password: "{{ elementsw_password }}"
    state: present
    from_name: AnsibleAccessGroup
    name: AnsibleAccessGroup-Renamed

- name: Delete Access Group
  na_elementsw_access_group:
    hostname: "{{ elementsw_hostname }}"
    username: "{{ elementsw_username }}"
    password: "{{ elementsw_password }}"
    state: absent
    name: 1

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description

msg

string

success

Success message





Authors

© 2012–2018 Michael DeHaan
© 2018–2021 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.11/collections/netapp/elementsw/na_elementsw_access_group_module.html