Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

na_cloudmanager_nss_account

Chris Archibald edited this page Apr 8, 2021 · 2 revisions
orphan:

netapp.cloudmanager.na_cloudmanager_nss_account -- NetApp Cloud Manager nss account

Note

This plugin is part of the netapp.cloudmanager collection (version 21.4.0).

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

To use it in a playbook, specify: netapp.cloudmanager.na_cloudmanager_nss_account.

.. versionadded:: 21.3.0 of netapp.cloudmanager

  • Create and Delete nss account.
Parameter Choices/Defaults Comments
client_id
string / required
The client ID of the Cloud Manager Connector.
name
string
The name of the NSS account.
password
string
The NSS password.
public_id
string
The ID of the NSS account.
refresh_token
string / required
The refresh token for NetApp Cloud Manager API operations.
state
string
    Choices:
  • present ←
  • absent
Whether the specified nss account should exist or not.
username
string / required
The NSS username.
vsa_list
list / elements=string
The working environment list.

Note

  • Support check_mode.
  • The modules prefixed with cloudmanager_netapp are built to Manage AWS/GCP/Azure CLOUDMANAGER.
- name: Create nss account
  netapp.cloudmanager.na_cloudmanager_nss_account:
    state: present
    name: test_cloud
    username: test_cloud
    password: password
    client_id: your_client_id
    refresh_token: your_refresh_token

Authors