mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
Bug fixes for GCP modules (#56765)
This commit is contained in:
parent
2220b9c851
commit
70ac35da3e
18 changed files with 29 additions and 48 deletions
|
@ -118,11 +118,8 @@ options:
|
|||
in the pool while that instance remains healthy."
|
||||
- "- CLIENT_IP_PROTO: Connections from the same client IP with the same IP protocol
|
||||
will go to the same instance in the pool while that instance remains healthy."
|
||||
- 'Some valid choices include: "NONE", "CLIENT_IP", "CLIENT_IP_PROTO"'
|
||||
required: false
|
||||
choices:
|
||||
- NONE
|
||||
- CLIENT_IP
|
||||
- CLIENT_IP_PROTO
|
||||
region:
|
||||
description:
|
||||
- The region where the target pool resides.
|
||||
|
@ -256,7 +253,7 @@ def main():
|
|||
health_check=dict(type='dict'),
|
||||
instances=dict(type='list', elements='dict'),
|
||||
name=dict(required=True, type='str'),
|
||||
session_affinity=dict(type='str', choices=['NONE', 'CLIENT_IP', 'CLIENT_IP_PROTO']),
|
||||
session_affinity=dict(type='str'),
|
||||
region=dict(required=True, type='str'),
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue