modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov 2020-07-13 22:50:31 +03:00 committed by GitHub
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
533 changed files with 2130 additions and 2130 deletions

View file

@ -78,26 +78,26 @@ author: "Alex Coomans (@drcapulet)"
EXAMPLES = '''
- name: Authenticate using email and API token and fetch all domains
dnsimple:
community.general.dnsimple:
account_email: test@example.com
account_api_token: dummyapitoken
delegate_to: localhost
- name: Fetch my.com domain records
dnsimple:
community.general.dnsimple:
domain: my.com
state: present
delegate_to: localhost
register: records
- name: Delete a domain
dnsimple:
community.general.dnsimple:
domain: my.com
state: absent
delegate_to: localhost
- name: Create a test.my.com A record to point to 127.0.0.1
dnsimple:
community.general.dnsimple:
domain: my.com
record: test
type: A
@ -106,14 +106,14 @@ EXAMPLES = '''
register: record
- name: Delete record using record_ids
dnsimple:
community.general.dnsimple:
domain: my.com
record_ids: '{{ record["id"] }}'
state: absent
delegate_to: localhost
- name: Create a my.com CNAME record to example.com
dnsimple:
community.general.dnsimple:
domain: my.com
record: ''
type: CNAME
@ -122,7 +122,7 @@ EXAMPLES = '''
delegate_to: localhost
- name: Change TTL value for a record
dnsimple:
community.general.dnsimple:
domain: my.com
record: ''
type: CNAME
@ -132,7 +132,7 @@ EXAMPLES = '''
delegate_to: localhost
- name: Delete the record
dnsimple:
community.general.dnsimple:
domain: my.com
record: ''
type: CNAME