purestorage.fusion.fusion_pp module – Manage protection policies in Pure Storage Fusion
Note
This module is part of the purestorage.fusion collection (version 1.2.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_pp
.
New in purestorage.fusion 1.0.0
Synopsis
Manage protection policies in Pure Storage Fusion.
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.5
purefusion
Parameters
Parameter |
Comments |
---|---|
Application ID from Pure1 Registration page eg. pure1:apikey:dssf2331sd Defaults to the set environment variable under FUSION_APP_ID |
|
The human name of the protection policy. If not provided, defaults to name. |
|
Path to the private key file Defaults to the set environment variable under FUSION_PRIVATE_KEY_FILE. |
|
Retention Duration for periodic snapshots. Minimum value is 1 minute. Value can be provided as m(inutes), h(ours), d(ays), w(eeks), or y(ears). If no unit is provided, minutes are assumed. Must be between 1MB/s and 512GB/s. |
|
Recovery Point Objective for snapshots. Value should be specified in minutes. Minimum value is 10 minutes. |
|
The name of the protection policy. |
|
Define whether the protection policy should exist or not. Choices:
|
Notes
Note
Supports
check mode
.This module requires the purefusion Python library
You must set
FUSION_APP_ID
andFUSION_PRIVATE_KEY_FILE
environment variables if app_id and key_file arguments are not passed to the module directly
Examples
- name: Create new protection policy foo
purestorage.fusion.fusion_pp:
name: foo
local_rpo: 10
local_retention: 4d
display_name: "foo pp"
app_id: key_name
key_file: "az-admin-private-key.pem"
- name: Create new protection policy foo
purestorage.fusion.fusion_pp:
name: foo
state: absent
app_id: key_name
key_file: "az-admin-private-key.pem"