fix gce_backend_service examples for healthchecks (#31134)
gce_backend_service module expects healthchecks to be an array of string. The previous example incorrectly mentioned healthchecks as an array of objects each containing a `name` key.
This commit is contained in:
parent
f5c35bc7f9
commit
e26d758d6f
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ EXAMPLES = '''
|
|||
backends:
|
||||
- instance_group: managed_instance_group_1
|
||||
healthchecks:
|
||||
- name: healthcheck_name_for_backend_service
|
||||
- healthcheck_name_for_backend_service
|
||||
port_name: myhttpport
|
||||
state: present
|
||||
|
||||
|
@ -104,7 +104,7 @@ EXAMPLES = '''
|
|||
max_utilization: 0.5
|
||||
max_rate: 4
|
||||
healthchecks:
|
||||
- name: healthcheck_name_for_backend_service
|
||||
- healthcheck_name_for_backend_service
|
||||
port_name: myhttpport
|
||||
state: present
|
||||
timeout: 60
|
||||
|
|
Loading…
Reference in a new issue