diff --git a/lib/ansible/modules/extras/cloud/amazon/ec2_customer_gateway.py b/lib/ansible/modules/extras/cloud/amazon/ec2_customer_gateway.py index 871513d9418..4e02523a700 100644 --- a/lib/ansible/modules/extras/cloud/amazon/ec2_customer_gateway.py +++ b/lib/ansible/modules/extras/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