Skip to content

Commit

Permalink
win_dns_record PTR docs update (ansible#60158)
Browse files Browse the repository at this point in the history
* win_dns_record PTR docs update

* Update win_dns_record.py
  • Loading branch information
ShachafGoldstein authored and acozine committed Aug 9, 2019
1 parent 6c09b5c commit b5f4286
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/ansible/modules/windows/win_dns_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
value:
description:
- The value(s) to specify. Required when C(state=present).
- When c(type=PTR) only the partial part of the IP should be given.
aliases: [ values ]
type: list
zone:
Expand All @@ -76,6 +77,13 @@
value: "cgyl1404p.amer.example.com"
zone: "amer.example.com"
- name: PTR example
win_dns_record:
name: "1.1.1"
type: "PTR"
value: "db1"
zone: "10.in-addr.arpa"
- name: Remove static record
win_dns_record:
name: "db1"
Expand Down

0 comments on commit b5f4286

Please sign in to comment.