Combined notes to avoid duplicate key warning. (#2980)

reviewable/pr18780/r1
Matt Clay 8 years ago committed by GitHub
parent 99c44d9640
commit 7a41a90e42

@ -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

Loading…
Cancel
Save