1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Update win_dns_record.py (#55378)

##### SUMMARY
<!--- Your description here -->
The documentation dictates the values are strings. but the examples don't show this.
This can be confusing for new people.

##### ISSUE TYPE
- Docs Pull Request

+label: docsite_pr
This commit is contained in:
Hilco Prevos 2019-04-23 22:13:03 +02:00 committed by Alicia Cozine
parent e0ea5bb512
commit 3fd27f0cac

View file

@ -71,17 +71,17 @@ options:
EXAMPLES = r''' EXAMPLES = r'''
- name: Create database server alias - name: Create database server alias
win_dns_record: win_dns_record:
name: db1 name: "db1"
type: CNAME type: "CNAME"
value: cgyl1404p.amer.example.com value: "cgyl1404p.amer.example.com"
zone: amer.example.com zone: "amer.example.com"
- name: Remove static record - name: Remove static record
win_dns_record: win_dns_record:
name: db1 name: "db1"
type: A type: "A"
state: absent state: absent
zone: amer.example.com zone: "amer.example.com"
''' '''
RETURN = r''' RETURN = r'''