gcdns_zone – Creates or removes zones in Google Cloud DNS¶
DEPRECATED¶
Removed in Ansible: | |
---|---|
version: 2.12 | |
Why: | Updated modules released with increased functionality |
Alternative: | Use gcp_dns_managed_zone instead. |
Requirements¶
The below requirements are needed on the host that executes this module.
- apache-libcloud >= 0.19.0
Parameters¶
Notes¶
Note
- See also gcdns_record.
- Zones that are newly created must still be set up with a domain registrar before they can be used.
Examples¶
# Basic zone creation example.
- name: Create a basic zone with the minimum number of parameters.
gcdns_zone: zone=example.com
# Zone removal example.
- name: Remove a zone.
gcdns_zone: zone=example.com state=absent
# Zone creation with description
- name: Creating a zone with a description
gcdns_zone: zone=example.com description="This is an awesome zone"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module will be removed in version 2.12. [deprecated]
- For more information see DEPRECATED.
Authors¶
- William Albert (@walbert947)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.