mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-09 04:10:27 -07:00
* Add ability to set global network endpoint group as backend for backend service. Make health_checks optional * PR fixes * Add encoder to remove max_utilization when neg backend * Check for global NEG in group to remove max_utilization * Add another nil check * Spacing * Docs fix Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
0eff143eef
commit
b6df15b40d
2 changed files with 11 additions and 8 deletions
|
@ -372,12 +372,13 @@ options:
|
||||||
health_checks:
|
health_checks:
|
||||||
description:
|
description:
|
||||||
- The set of URLs to the HttpHealthCheck or HttpsHealthCheck resource for health
|
- The set of URLs to the HttpHealthCheck or HttpsHealthCheck resource for health
|
||||||
checking this BackendService. Currently at most one health check can be specified,
|
checking this BackendService. Currently at most one health check can be specified.
|
||||||
and a health check is required.
|
- A health check must be specified unless the backend service uses an internet
|
||||||
|
NEG as a backend.
|
||||||
- For internal load balancing, a URL to a HealthCheck resource must be specified
|
- For internal load balancing, a URL to a HealthCheck resource must be specified
|
||||||
instead.
|
instead.
|
||||||
elements: str
|
elements: str
|
||||||
required: true
|
required: false
|
||||||
type: list
|
type: list
|
||||||
iap:
|
iap:
|
||||||
description:
|
description:
|
||||||
|
@ -1030,8 +1031,9 @@ enableCDN:
|
||||||
healthChecks:
|
healthChecks:
|
||||||
description:
|
description:
|
||||||
- The set of URLs to the HttpHealthCheck or HttpsHealthCheck resource for health
|
- The set of URLs to the HttpHealthCheck or HttpsHealthCheck resource for health
|
||||||
checking this BackendService. Currently at most one health check can be specified,
|
checking this BackendService. Currently at most one health check can be specified.
|
||||||
and a health check is required.
|
- A health check must be specified unless the backend service uses an internet NEG
|
||||||
|
as a backend.
|
||||||
- For internal load balancing, a URL to a HealthCheck resource must be specified
|
- For internal load balancing, a URL to a HealthCheck resource must be specified
|
||||||
instead.
|
instead.
|
||||||
returned: success
|
returned: success
|
||||||
|
@ -1365,7 +1367,7 @@ def main():
|
||||||
custom_request_headers=dict(type='list', elements='str'),
|
custom_request_headers=dict(type='list', elements='str'),
|
||||||
description=dict(type='str'),
|
description=dict(type='str'),
|
||||||
enable_cdn=dict(type='bool'),
|
enable_cdn=dict(type='bool'),
|
||||||
health_checks=dict(required=True, type='list', elements='str'),
|
health_checks=dict(type='list', elements='str'),
|
||||||
iap=dict(
|
iap=dict(
|
||||||
type='dict',
|
type='dict',
|
||||||
options=dict(enabled=dict(type='bool'), oauth2_client_id=dict(required=True, type='str'), oauth2_client_secret=dict(required=True, type='str')),
|
options=dict(enabled=dict(type='bool'), oauth2_client_id=dict(required=True, type='str'), oauth2_client_secret=dict(required=True, type='str')),
|
||||||
|
|
|
@ -426,8 +426,9 @@ resources:
|
||||||
healthChecks:
|
healthChecks:
|
||||||
description:
|
description:
|
||||||
- The set of URLs to the HttpHealthCheck or HttpsHealthCheck resource for health
|
- The set of URLs to the HttpHealthCheck or HttpsHealthCheck resource for health
|
||||||
checking this BackendService. Currently at most one health check can be specified,
|
checking this BackendService. Currently at most one health check can be specified.
|
||||||
and a health check is required.
|
- A health check must be specified unless the backend service uses an internet
|
||||||
|
NEG as a backend.
|
||||||
- For internal load balancing, a URL to a HealthCheck resource must be specified
|
- For internal load balancing, a URL to a HealthCheck resource must be specified
|
||||||
instead.
|
instead.
|
||||||
returned: success
|
returned: success
|
||||||
|
|
Loading…
Add table
Reference in a new issue