From 3fd27f0cac1e305a8539769c7446ba288b1ca9ae Mon Sep 17 00:00:00 2001 From: Hilco Prevos <46867833+HilcoP@users.noreply.github.com> Date: Tue, 23 Apr 2019 22:13:03 +0200 Subject: [PATCH] Update win_dns_record.py (#55378) ##### SUMMARY 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 --- lib/ansible/modules/windows/win_dns_record.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ansible/modules/windows/win_dns_record.py b/lib/ansible/modules/windows/win_dns_record.py index 6874a12368..0e499515ad 100644 --- a/lib/ansible/modules/windows/win_dns_record.py +++ b/lib/ansible/modules/windows/win_dns_record.py @@ -71,17 +71,17 @@ options: 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'''