From dbde446358106c91d65f82eea2ce1fe86f60d6d1 Mon Sep 17 00:00:00 2001 From: Scott Patten Date: Fri, 21 Feb 2014 19:33:09 -0800 Subject: [PATCH] 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. --- library/cloud/route53 | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/library/cloud/route53 b/library/cloud/route53 index 78e726995ef..115ef870c58 100644 --- a/library/cloud/route53 +++ b/library/cloud/route53 @@ -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