purestorage.flasharray.purefa_dns module – Configure FlashArray DNS settings
Note
This module is part of the purestorage.flasharray collection (version 1.24.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.flasharray
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: purestorage.flasharray.purefa_dns
.
New in purestorage.flasharray 1.0.0
Synopsis
Set or erase configuration for the DNS settings.
Nameservers provided will overwrite any existing nameservers.
From Purity//FA 6.3.3 DNS setting for FA-File can be configured seperately to the management DNS settings
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.3
purestorage >= 1.19
py-pure-client >= 1.26.0
netaddr
requests
pycountry
packaging
Parameters
Parameter |
Comments |
---|---|
FlashArray API token for admin privileged user. |
|
Domain suffix to be appended when perofrming DNS lookups. |
|
FlashArray management IPv4 address or Hostname. |
|
Name of the DNS configuration. Default value only supported for management service Default: |
|
List of up to 3 unique DNS server IP addresses. These can be IPv4 or IPv6 - No validation is done of the addresses is performed. |
|
Type of ser vice the DNS will work with Choices:
|
|
A virtual network interface (vif) |
|
Set or delete directory service configuration Choices:
|
Notes
Note
This module requires the
purestorage
andpy-pure-client
Python librariesAdditional Python librarues may be required for specific modules.
You must set
PUREFA_URL
andPUREFA_API
environment variables if fa_url and api_token arguments are not passed to the module directly
Examples
- name: Delete exisitng DNS settings
purestorage.flasharray.purefa_dns:
state: absent
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Set managemnt DNS settings
purestorage.flasharray.purefa_dns:
domain: purestorage.com
nameservers:
- 8.8.8.8
- 8.8.4.4
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Set file DNS settings
purestorage.flasharray.purefa_dns:
domain: purestorage.com
nameservers:
- 8.8.8.8
- 8.8.4.4
name: ad_dns
service: file
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592