mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-29 19:50:25 -07:00
Bug fixes for GCP modules (#56764)
This commit is contained in:
parent
70ac35da3e
commit
0ff62fd5c4
20 changed files with 107 additions and 210 deletions
|
@ -114,11 +114,9 @@ options:
|
|||
- 'Direction of traffic to which this firewall applies; default is INGRESS. Note:
|
||||
For INGRESS traffic, it is NOT supported to specify destinationRanges; For EGRESS
|
||||
traffic, it is NOT supported to specify sourceRanges OR sourceTags.'
|
||||
- 'Some valid choices include: "INGRESS", "EGRESS"'
|
||||
required: false
|
||||
version_added: 2.8
|
||||
choices:
|
||||
- INGRESS
|
||||
- EGRESS
|
||||
disabled:
|
||||
description:
|
||||
- Denotes whether the firewall rule is disabled, i.e not applied to the network
|
||||
|
@ -431,7 +429,7 @@ def main():
|
|||
denied=dict(type='list', elements='dict', options=dict(ip_protocol=dict(required=True, type='str'), ports=dict(type='list', elements='str'))),
|
||||
description=dict(type='str'),
|
||||
destination_ranges=dict(type='list', elements='str'),
|
||||
direction=dict(type='str', choices=['INGRESS', 'EGRESS']),
|
||||
direction=dict(type='str'),
|
||||
disabled=dict(type='bool'),
|
||||
name=dict(required=True, type='str'),
|
||||
network=dict(default=dict(selfLink='global/networks/default'), type='dict'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue