From bf065e853f1d8a185095872fae4f636d052fe2d1 Mon Sep 17 00:00:00 2001 From: s-hertel Date: Mon, 3 Dec 2018 17:50:17 -0500 Subject: [PATCH] Lowercase task name and format variable with spaces --- lib/ansible/modules/cloud/amazon/route53_facts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/route53_facts.py b/lib/ansible/modules/cloud/amazon/route53_facts.py index 4b3d907543..5ba4440d8f 100644 --- a/lib/ansible/modules/cloud/amazon/route53_facts.py +++ b/lib/ansible/modules/cloud/amazon/route53_facts.py @@ -185,11 +185,11 @@ EXAMPLES = ''' zone: "test.io" register: AWSINFO - - name: GRAB ROUTE53 INFORMATION + - name: grab Route53 record information route53_facts: type: A query: record_sets - hosted_zone_id: "{{AWSINFO.zone_id}}" + hosted_zone_id: "{{ AWSINFO.zone_id }}" start_record_name: "host1.workshop.test.io" register: RECORDS '''