Bug fixes for GCP modules (#60337)

This commit is contained in:
The Magician 2019-08-12 11:31:35 -07:00 committed by ansibot
parent 687da46a85
commit be459c00bf
2 changed files with 3 additions and 3 deletions

View file

@ -355,7 +355,7 @@ EXAMPLES = '''
state: present state: present
register: instancegroup register: instancegroup
- name: create a http health check - name: create a HTTP health check
gcp_compute_http_health_check: gcp_compute_http_health_check:
name: httphealthcheck-backendservice name: httphealthcheck-backendservice
healthy_threshold: 10 healthy_threshold: 10

View file

@ -22,7 +22,7 @@
service_account_file: "{{ gcp_cred_file }}" service_account_file: "{{ gcp_cred_file }}"
state: present state: present
register: instancegroup register: instancegroup
- name: create a http health check - name: create a HTTP health check
gcp_compute_http_health_check: gcp_compute_http_health_check:
name: httphealthcheck-backendservice name: httphealthcheck-backendservice
healthy_threshold: 10 healthy_threshold: 10
@ -149,7 +149,7 @@
#--------------------------------------------------------- #---------------------------------------------------------
# Post-test teardown # Post-test teardown
# If errors happen, don't crash the playbook! # If errors happen, don't crash the playbook!
- name: delete a http health check - name: delete a HTTP health check
gcp_compute_http_health_check: gcp_compute_http_health_check:
name: httphealthcheck-backendservice name: httphealthcheck-backendservice
healthy_threshold: 10 healthy_threshold: 10