|
|
|
@ -103,7 +103,7 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
- name: ensure an "A" record set with multiple records
|
|
|
|
|
azure_rm_dnsrecordset:
|
|
|
|
|
resource_group: Testing
|
|
|
|
|
resource_group: myResourceGroup
|
|
|
|
|
relative_name: www
|
|
|
|
|
zone_name: testing.com
|
|
|
|
|
record_type: A
|
|
|
|
@ -115,7 +115,7 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
- name: delete a record set
|
|
|
|
|
azure_rm_dnsrecordset:
|
|
|
|
|
resource_group: Testing
|
|
|
|
|
resource_group: myResourceGroup
|
|
|
|
|
record_type: A
|
|
|
|
|
relative_name: www
|
|
|
|
|
zone_name: testing.com
|
|
|
|
@ -123,7 +123,7 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
- name: create multiple "A" record sets with multiple records
|
|
|
|
|
azure_rm_dnsrecordset:
|
|
|
|
|
resource_group: Testing
|
|
|
|
|
resource_group: myResourceGroup
|
|
|
|
|
zone_name: testing.com
|
|
|
|
|
state: present
|
|
|
|
|
relative_name: "{{ item.name }}"
|
|
|
|
@ -136,7 +136,7 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
- name: create SRV records in a new record set
|
|
|
|
|
azure_rm_dnsrecordset:
|
|
|
|
|
resource_group: Testing
|
|
|
|
|
resource_group: myResourceGroup
|
|
|
|
|
relative_name: _sip._tcp.testing.com
|
|
|
|
|
zone_name: testing.com
|
|
|
|
|
time_to_live: 7200
|
|
|
|
@ -151,7 +151,7 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
- name: create PTR record in a new record set
|
|
|
|
|
azure_rm_dnsrecordset:
|
|
|
|
|
resource_group: Testing
|
|
|
|
|
resource_group: myResourceGroup
|
|
|
|
|
relative_name: 192.168.100.101.in-addr.arpa
|
|
|
|
|
zone_name: testing.com
|
|
|
|
|
record_type: PTR
|
|
|
|
@ -160,7 +160,7 @@ EXAMPLES = '''
|
|
|
|
|
|
|
|
|
|
- name: create TXT record in a new record set
|
|
|
|
|
azure_rm_dnsrecordset:
|
|
|
|
|
resource_group: Testing
|
|
|
|
|
resource_group: myResourceGroup
|
|
|
|
|
relative_name: mail.testing.com
|
|
|
|
|
zone_name: testing.com
|
|
|
|
|
record_type: TXT
|
|
|
|
|