summaryrefslogtreecommitdiff
path: root/cloud/amazon
diff options
context:
space:
mode:
authorMatthieu Dolci <matthieu.dolci@gmail.com>2016-11-11 14:33:18 -0800
committerRené Moser <mail@renemoser.net>2016-11-11 23:33:18 +0100
commitb89cfe42ef5cf2c70b0f92c5cc7b9c310979a8b1 (patch)
treed94b06431c6de8eda6fb8c87b9532903ae440e25 /cloud/amazon
parent38ab1fe369c165fe9079c6f097ca3a8e2137f792 (diff)
downloadansible-modules-extras-b89cfe42ef5cf2c70b0f92c5cc7b9c310979a8b1.tar.gz
ec2_customer_gateway: state present expect bgp_arn instead of bgp_asn (#3366)
Diffstat (limited to 'cloud/amazon')
-rw-r--r--cloud/amazon/ec2_customer_gateway.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud/amazon/ec2_customer_gateway.py b/cloud/amazon/ec2_customer_gateway.py
index 64a77bb0..0138e839 100644
--- a/cloud/amazon/ec2_customer_gateway.py
+++ b/cloud/amazon/ec2_customer_gateway.py
@@ -204,7 +204,7 @@ def main():
module = AnsibleModule(argument_spec=argument_spec,
supports_check_mode=True,
required_if=[
- ('state', 'present', ['bgp_arn'])
+ ('state', 'present', ['bgp_asn'])
]
)