Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general.
To use it in a playbook, specify: community.general.memset_zone_record.
| Parameter | Choices/Defaults | Comments |
|---|---|---|
| address string / required | The address for this record (can be IP or text string depending on record type). aliases: ip, data | |
| api_key string / required | The API key obtained from the Memset control panel. | |
| priority string | SRV and TXT record priority, in the range 0 > 999 (inclusive). | |
| record string | The subdomain to create. | |
| relative boolean |
| If set then the current domain is added onto the address field for CNAME, MX, NS and SRVrecord types. |
| state string |
| Indicates desired state of resource. |
| ttl string |
| The record's TTL in seconds (will inherit zone's TTL if not explicitly set). This must be a valid int from https://www.memset.com/apidocs/methods_dns.html#dns.zone_record_create. |
| type string / required |
| The type of DNS record to create. |
| zone string / required | The name of the zone to which to add the record to. |
Note
with_items.# Create DNS record for www.domain.com
- name: Create DNS record
community.general.memset_zone_record:
api_key: dcf089a2896940da9ffefb307ef49ccd
state: present
zone: domain.com
type: A
record: www
address: 1.2.3.4
ttl: 300
relative: false
delegate_to: localhost
# create an SPF record for domain.com
- name: Create SPF record for domain.com
community.general.memset_zone_record:
api_key: dcf089a2896940da9ffefb307ef49ccd
state: present
zone: domain.com
type: TXT
address: "v=spf1 +a +mx +ip4:a1.2.3.4 ?all"
delegate_to: localhost
# create multiple DNS records
- name: Create multiple DNS records
community.general.memset_zone_record:
api_key: dcf089a2896940da9ffefb307ef49ccd
zone: "{{ item.zone }}"
type: "{{ item.type }}"
record: "{{ item.record }}"
address: "{{ item.address }}"
delegate_to: localhost
with_items:
- { 'zone': 'domain1.com', 'type': 'A', 'record': 'www', 'address': '1.2.3.4' }
- { 'zone': 'domain2.com', 'type': 'A', 'record': 'mail', 'address': '4.3.2.1' }
Common return values are documented here, the following are the fields unique to this module:
| Key | Returned | Description | |
|---|---|---|---|
| memset_api complex | when state == present | Record info from the Memset API. | |
| address string | always | Record content (may be an IP, string or blank depending on record type). Sample: 1.1.1.1 | |
| id string | always | Record ID. Sample: b0bb1ce851aeea6feeb2dc32fe83bf9c | |
| priority integer | always | Priority for MX and SRV records.Sample: 10 | |
| record string | always | Name of record. Sample: www | |
| relative boolean | always | Adds the current domain onto the address field for CNAME, MX, NS and SRV types. | |
| ttl integer | always | Record TTL. Sample: 10 | |
| type string | always | Record type. Sample: AAAA | |
| zone_id string | always | Zone ID. Sample: b0bb1ce851aeea6feeb2dc32fe83bf9c | |
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/memset_zone_record_module.html