summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Miller <scott.miller171@gmail.com>2015-03-27 16:20:20 -0400
committerScott Miller <scott.miller171@gmail.com>2015-03-27 16:20:20 -0400
commit13d420ebee11f2f4f68793b59f065b382beaeab9 (patch)
tree1e957614b4def0bd6d145022f7bd2c76607fe607
parentf3e4704d92b051542b0523f753384bef9b849639 (diff)
downloadansible-modules-core-13d420ebee11f2f4f68793b59f065b382beaeab9.tar.gz
describe choices in alias documentation
-rw-r--r--cloud/amazon/route53.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloud/amazon/route53.py b/cloud/amazon/route53.py
index 97689a98..826269fb 100644
--- a/cloud/amazon/route53.py
+++ b/cloud/amazon/route53.py
@@ -61,6 +61,7 @@ options:
version_added: 1.9
default: False
aliases: []
+ choices: [ 'True', 'False' ]
alias_hosted_zone_id:
description:
- The hosted zone identifier.
@@ -153,7 +154,7 @@ EXAMPLES = '''
record=elb.foo.com
type=A
value="{{ elb_dns_name }}"
- alias=yes
+ alias=True
alias_hosted_zone_id="{{ elb_zone_id }}"