[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
pull/21746/head
Ryan Brown 8 years ago committed by GitHub
parent bedf0279a9
commit c136ff58c0

@ -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:

Loading…
Cancel
Save