From c136ff58c0a31a8fd7465702bca165a3a0853455 Mon Sep 17 00:00:00 2001 From: Ryan Brown Date: Tue, 21 Feb 2017 15:48:32 -0500 Subject: [PATCH] [cloud][docs] Fix misleading Route53 `value` example (#21689) The `route53` module uses a comma-separated string for records containing more than one value. Fixes #21134 --- lib/ansible/modules/cloud/amazon/route53.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/route53.py b/lib/ansible/modules/cloud/amazon/route53.py index 58dbfd54b8..4fbd45cfca 100644 --- a/lib/ansible/modules/cloud/amazon/route53.py +++ b/lib/ansible/modules/cloud/amazon/route53.py @@ -207,7 +207,7 @@ EXAMPLES = ''' "zone": "foo.com" "record": "_example-service._tcp.foo.com" "type": "SRV" - "value": ["0 0 22222 host1.foo.com", "0 0 22222 host2.foo.com"] + "value": "0 0 22222 host1.foo.com,0 0 22222 host2.foo.com" # Add a TXT record. Note that TXT and SPF records must be surrounded # by quotes when sent to Route 53: