Skip to content

Commit

Permalink
Fix non-matching defaults in docs (ansible-collections#1576)
Browse files Browse the repository at this point in the history
Fix non-matching defaults in docs

Depends-On: ansible-collections#1579
SUMMARY
Fix various non-matching default values exposed by ansible/ansible#79267.
ISSUE TYPE

Docs Pull Request

COMPONENT NAME
various

Reviewed-by: Markus Bergholz <[email protected]>

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@15568f0
  • Loading branch information
felixfontein authored and alinabuzachis committed Oct 16, 2024
1 parent 02be74e commit 9a712a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/modules/ec2_vpc_vpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
required: false
type: list
elements: dict
default: []
suboptions:
TunnelInsideCidr:
type: str
Expand Down Expand Up @@ -110,11 +111,13 @@
description:
- The customer gateway id as a string or a list of those strings.
type: dict
default: {}
routes:
description:
- Routes to add to the connection.
type: list
elements: str
default: []
purge_routes:
description:
- Whether or not to delete VPN connections routes that are not specified in the task.
Expand Down
2 changes: 2 additions & 0 deletions plugins/modules/ec2_vpc_vpn_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@
See U(https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeVpnConnections.html) for possible filters.
required: false
type: dict
default: {}
vpn_connection_ids:
description:
- Get details of a specific VPN connections using vpn connection ID/IDs. This value should be provided as a list.
required: false
type: list
elements: str
default: []
extends_documentation_fragment:
- amazon.aws.aws
- amazon.aws.ec2
Expand Down

0 comments on commit 9a712a5

Please sign in to comment.