From 7a41a90e42c1d92e274e4ee0573b4e4d90fa9c2d Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 19 Sep 2016 16:56:45 -0700 Subject: [PATCH] Combined notes to avoid duplicate key warning. (#2980) --- cloud/amazon/ec2_customer_gateway.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cloud/amazon/ec2_customer_gateway.py b/cloud/amazon/ec2_customer_gateway.py index 871513d9418..4e02523a700 100644 --- a/cloud/amazon/ec2_customer_gateway.py +++ b/cloud/amazon/ec2_customer_gateway.py @@ -24,6 +24,8 @@ author: Michael Baydoun (@MichaelBaydoun) requirements: [ botocore, boto3 ] notes: - You cannot create more than one customer gateway with the same IP address. If you run an identical request more than one time, the first request creates the customer gateway, and subsequent requests return information about the existing customer gateway. The subsequent requests do not create new customer gateway resources. + - Return values contain customer_gateway and customer_gateways keys which are identical dicts. You should use + customer_gateway. See U(https://github.com/ansible/ansible-modules-extras/issues/2773) for details. options: bgp_asn: description: @@ -44,9 +46,6 @@ options: required: false default: present choices: [ 'present', 'absent' ] -notes: - - Return values contain customer_gateway and customer_gateways keys which are identical dicts. You should use - customer_gateway. See U(https://github.com/ansible/ansible-modules-extras/issues/2773) for details. extends_documentation_fragment: - aws - ec2