purestorage.fusion.fusion_array module – Manage arrays in Pure Storage Fusion
Note
This module is part of the purestorage.fusion collection (version 1.6.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install purestorage.fusion
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: purestorage.fusion.fusion_array
.
New in purestorage.fusion 1.0.0
Synopsis
Create or delete an array in Pure Storage Fusion.
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.8
purefusion
Parameters
Parameter |
Comments |
---|---|
Access token for Fusion Service Defaults to the set environment variable under FUSION_ACCESS_TOKEN |
|
The Apartment ID of the Array. |
|
Appliance ID of the array. |
|
The availability zone the array is located in. |
|
The human name of the array. If not provided, defaults to name. |
|
Hardware type to which the storage class applies. Choices:
|
|
Management IP address of the array, or FQDN. |
|
Application ID from Pure1 Registration page eg. pure1:apikey:dssf2331sd Defaults to the set environment variable under FUSION_ISSUER_ID |
|
Switch the array into maintenance mode or back. Array in maintenance mode can have placement groups migrated out but not in. Intended use cases are for example safe decommissioning or to prevent use of an array that has not yet been fully configured. Choices:
|
|
The name of the array. |
|
Path to the private key file Defaults to the set environment variable under FUSION_PRIVATE_KEY_FILE. |
|
Password of the encrypted private key file |
|
The region the AZ is in. |
|
Define whether the array should exist or not. Choices:
|
|
Switch the array into unavailable mode or back. Fusion tries to exclude unavailable arrays from virtually any operation it can. This is to prevent stalling operations in case of e.g. a networking failure. As of the moment arrays have to be marked unavailable manually. Choices:
|
Notes
Note
Supports
check mode
.This module requires the purefusion Python library
You must set
FUSION_ISSUER_ID
andFUSION_PRIVATE_KEY_FILE
environment variables if issuer_id and private_key_file arguments are not passed to the module directlyIf you want to use access token for authentication, you must use
FUSION_ACCESS_TOKEN
environment variable if access_token argument is not passed to the module directly
Examples
- name: Create new array foo
purestorage.fusion.fusion_array:
name: foo
az: zone_1
region: region1
hardware_type: flash-array-x
host_name: foo_array
display_name: "foo array"
appliance_id: 1227571-198887878-35016350232000707
issuer_id: key_name
private_key_file: "az-admin-private-key.pem"