netapp.storagegrid.nac_sg_grid_regions (20.6.1) — module

NetApp StorageGRID manage Regions for the grid.

| "added in version" 20.6.0 of netapp.storagegrid"

Authors: NetApp Ansible Team (@joshedmonds) <ng-ansibleteam@netapp.com>

preview | supported by community

Install collection

Install with ansible-galaxy collection install netapp.storagegrid:==20.6.1


Add to requirements.yml

  collections:
    - name: netapp.storagegrid
      version: 20.6.1

Description

Create, Update, Delete Users within a NetApp StorageGRID tenant.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  - name: update Regions
    netapp.storagegrid.nac_sg_grid_regions:
      api_url: "https://<storagegrid-endpoint-url>"
      auth_token: "storagegrid-auth-token"
      validate_certs: false
      state: present
      regions: "us-east-1"

Inputs

    
state:
    choices:
    - present
    - absent
    description:
    - Whether the specified user should exist or not.
    required: true
    type: str

api_url:
    description:
    - The url to the StorageGRID Admin Node REST API.
    required: true
    type: str

regions:
    description:
    - List of regions
    required: true
    type: str

auth_token:
    description:
    - The authorization token for the API request
    required: true
    type: str

validate_certs:
    default: true
    description:
    - Should https certificates be validated?
    required: false
    type: bool