Skip to content

Commit

Permalink
Update win_dns_record.py (ansible#55378)
Browse files Browse the repository at this point in the history
##### 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
  • Loading branch information
Hilco Prevos authored and acozine committed Apr 23, 2019
1 parent e0ea5bb commit 3fd27f0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/ansible/modules/windows/win_dns_record.py
Expand Up @@ -71,17 +71,17 @@
EXAMPLES = r'''
- name: Create database server alias
win_dns_record:
name: db1
type: CNAME
value: cgyl1404p.amer.example.com
zone: amer.example.com
name: "db1"
type: "CNAME"
value: "cgyl1404p.amer.example.com"
zone: "amer.example.com"
- name: Remove static record
win_dns_record:
name: db1
type: A
name: "db1"
type: "A"
state: absent
zone: amer.example.com
zone: "amer.example.com"
'''

RETURN = r'''
Expand Down

0 comments on commit 3fd27f0

Please sign in to comment.