summaryrefslogtreecommitdiff
path: root/cloud/amazon
diff options
context:
space:
mode:
authorFabio Alessandro Locati <me@fale.io>2016-12-05 04:15:23 +0000
committerJohn R Barker <john@johnrbarker.com>2016-12-04 23:15:23 -0500
commit83b86ec970ed9541f6c6a31649aeeacb3d835e58 (patch)
tree97738c28707e80265bd67dc7cedf0e0b152f20db /cloud/amazon
parent51f09503a7a624de6e28ab2e678192c19f808887 (diff)
downloadansible-modules-extras-83b86ec970ed9541f6c6a31649aeeacb3d835e58.tar.gz
Native YAML, improve quotation (#3643)
Diffstat (limited to 'cloud/amazon')
-rw-r--r--cloud/amazon/route53_facts.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cloud/amazon/route53_facts.py b/cloud/amazon/route53_facts.py
index 15379688..2cb84b03 100644
--- a/cloud/amazon/route53_facts.py
+++ b/cloud/amazon/route53_facts.py
@@ -134,7 +134,7 @@ EXAMPLES = '''
route53_facts:
profile: account_name
query: record_sets
- hosted_zone_id: 'ZZZ1111112222'
+ hosted_zone_id: ZZZ1111112222
max_items: 20
register: record_sets
@@ -149,13 +149,13 @@ EXAMPLES = '''
route53_facts:
query: health_check
health_check_method: failure_reason
- health_check_id: '00000000-1111-2222-3333-12345678abcd'
+ health_check_id: 00000000-1111-2222-3333-12345678abcd
register: health_check_failure_reason
- name: Retrieve reusable delegation set details
route53_facts:
query: reusable_delegation_set
- delegation_set_id: 'delegation id'
+ delegation_set_id: delegation id
register: delegation_sets
'''