purestorage.fusion.fusion_tn module – Manage tenant networks 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_tn
.
New in purestorage.fusion 1.0.0
Synopsis
Create or delete tenant networks in Pure Storage Fusion.
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.5
purefusion
Parameters
Parameter |
Comments |
---|---|
List of IP addresses to be used in the subnet of the tenant network. IP addresses must include a CIDR notation. IPv4 and IPv6 are fully supported. |
|
Application ID from Pure1 Registration page eg. pure1:apikey:dssf2331sd Defaults to the set environment variable under FUSION_APP_ID |
|
The name of the availability zone for the tenant network. |
|
The human name of the tenant network. If not provided, defaults to name. |
|
Address of the subnet gateway. Currently this must be provided. |
|
Path to the private key file Defaults to the set environment variable under FUSION_PRIVATE_KEY_FILE. |
|
MTU setting for the subnet. Default: |
|
The name of the tenant network. |
|
Network prefix in CIDR format. This will be deprecated soon. |
|
List of provider subnets to assign to the tenant networks subnet. |
|
Define whether the tenant network should exist or not. Choices:
|
Notes
Note
Supports
check_mode
.Currently this only supports a single tenant subnet per tenant network.
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 tenant network foo in AZ bar
purestorage.fusion.fusion_tn:
name: foo
availability_zone: bar
mtu: 9000
gateway: 10.21.200.1
addresses:
- 10.21.200.124/24
- 10.21.200.36/24
provider_subnets:
- subnet-0
state: present
app_id: key_name
key_file: "az-admin-private-key.pem"
- name: Delete tenant network foo in AZ bar
purestorage.fusion.fusion_tn:
name: foo
availability_zone: bar
state: absent
app_id: key_name
key_file: "az-admin-private-key.pem"