mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 04:41:26 -07:00
In the route53 module, documenting that TXT and SPF requests
must be surrounded by quotes. Otherwise you get a cryptic error message from Route 53.
This commit is contained in:
parent
9686695170
commit
dbde446358
1 changed files with 12 additions and 0 deletions
|
@ -117,6 +117,18 @@ EXAMPLES = '''
|
||||||
type=AAAA
|
type=AAAA
|
||||||
ttl=7200
|
ttl=7200
|
||||||
value="::1"
|
value="::1"
|
||||||
|
|
||||||
|
# Add a TXT record. Note that TXT and SPF records must be surrounded
|
||||||
|
# by quotes when sent to Route 53:
|
||||||
|
- route53: >
|
||||||
|
command=create
|
||||||
|
zone=foo.com
|
||||||
|
record=localhost.foo.com
|
||||||
|
type=TXT
|
||||||
|
ttl=7200
|
||||||
|
value="\"bar\""
|
||||||
|
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue