Skip to content

Commit

Permalink
adjust booleans (ansible-collections#1420)
Browse files Browse the repository at this point in the history
adjust booleans: use true/false

Depends-On: ansible-collections#1423
SUMMARY
ansible-community/community-topics#116
ISSUE TYPE

Docs Pull Request

Reviewed-by: Mark Chappell <None>
Reviewed-by: Alina Buzachis <None>

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@cb9716e
  • Loading branch information
markuman authored and alinabuzachis committed Oct 24, 2024
1 parent 5bc53fb commit 316cf63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/ec2_vpc_vpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- The desired state of the VPN connection.
choices: ['present', 'absent']
default: present
required: no
required: false
type: str
customer_gateway_id:
description:
Expand All @@ -51,13 +51,13 @@
- Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP.
default: False
type: bool
required: no
required: false
tunnel_options:
description:
- An optional list object containing no more than two dict members, each of which may contain I(TunnelInsideCidr)
and/or I(PreSharedKey) keys with appropriate string values. AWS defaults will apply in absence of either of
the aforementioned keys.
required: no
required: false
type: list
elements: dict
suboptions:
Expand Down

0 comments on commit 316cf63

Please sign in to comment.