[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
This commit is contained in:
parent
bedf0279a9
commit
c136ff58c0
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue