mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -68,7 +68,7 @@ extends_documentation_fragment:
|
|||
|
||||
EXAMPLES = r'''
|
||||
- name: Ensure dns record is present
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
ipa_host: spider.example.com
|
||||
ipa_pass: Passw0rd!
|
||||
state: present
|
||||
|
@ -78,7 +78,7 @@ EXAMPLES = r'''
|
|||
record_value: '::1'
|
||||
|
||||
- name: Ensure that dns record exists with a TTL
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
name: host02
|
||||
zone_name: example.com
|
||||
record_type: 'AAAA'
|
||||
|
@ -89,7 +89,7 @@ EXAMPLES = r'''
|
|||
state: present
|
||||
|
||||
- name: Ensure a PTR record is present
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
ipa_host: spider.example.com
|
||||
ipa_pass: Passw0rd!
|
||||
state: present
|
||||
|
@ -99,7 +99,7 @@ EXAMPLES = r'''
|
|||
record_value: 'internal.ipa.example.com'
|
||||
|
||||
- name: Ensure a TXT record is present
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
ipa_host: spider.example.com
|
||||
ipa_pass: Passw0rd!
|
||||
state: present
|
||||
|
@ -109,7 +109,7 @@ EXAMPLES = r'''
|
|||
record_value: 'EXAMPLE.COM'
|
||||
|
||||
- name: Ensure an SRV record is present
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
ipa_host: spider.example.com
|
||||
ipa_pass: Passw0rd!
|
||||
state: present
|
||||
|
@ -119,7 +119,7 @@ EXAMPLES = r'''
|
|||
record_value: '10 50 88 ipa.example.com'
|
||||
|
||||
- name: Ensure an MX record is present
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
ipa_host: spider.example.com
|
||||
ipa_pass: Passw0rd!
|
||||
state: present
|
||||
|
@ -129,7 +129,7 @@ EXAMPLES = r'''
|
|||
record_value: '1 mailserver.example.com'
|
||||
|
||||
- name: Ensure that dns record is removed
|
||||
ipa_dnsrecord:
|
||||
community.general.ipa_dnsrecord:
|
||||
name: host01
|
||||
zone_name: example.com
|
||||
record_type: 'AAAA'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue