Commit dbde4463 by Scott Patten

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.
parent 96866951
......@@ -117,6 +117,18 @@ EXAMPLES = '''
type=AAAA
ttl=7200
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment