win_dns_record PTR docs update (#60158)

* win_dns_record PTR docs update

* Update win_dns_record.py
pull/60321/head
Shachaf92 7 years ago committed by Alicia Cozine
parent 6c09b5c659
commit b5f42869dc

@ -51,6 +51,7 @@ options:
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:
@ -76,6 +77,13 @@ EXAMPLES = r'''
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"

Loading…
Cancel
Save