From be459c00bf373530ac379e76e62d3dde7918e8d7 Mon Sep 17 00:00:00 2001 From: The Magician Date: Mon, 12 Aug 2019 11:31:35 -0700 Subject: [PATCH] Bug fixes for GCP modules (#60337) --- .../modules/cloud/google/gcp_compute_backend_service.py | 2 +- .../targets/gcp_compute_backend_service/tasks/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/cloud/google/gcp_compute_backend_service.py b/lib/ansible/modules/cloud/google/gcp_compute_backend_service.py index a368ca26066..5914d9774e4 100644 --- a/lib/ansible/modules/cloud/google/gcp_compute_backend_service.py +++ b/lib/ansible/modules/cloud/google/gcp_compute_backend_service.py @@ -355,7 +355,7 @@ EXAMPLES = ''' state: present register: instancegroup -- name: create a http health check +- name: create a HTTP health check gcp_compute_http_health_check: name: httphealthcheck-backendservice healthy_threshold: 10 diff --git a/test/integration/targets/gcp_compute_backend_service/tasks/main.yml b/test/integration/targets/gcp_compute_backend_service/tasks/main.yml index b93a9bd963f..60fa24c4be9 100644 --- a/test/integration/targets/gcp_compute_backend_service/tasks/main.yml +++ b/test/integration/targets/gcp_compute_backend_service/tasks/main.yml @@ -22,7 +22,7 @@ service_account_file: "{{ gcp_cred_file }}" state: present register: instancegroup -- name: create a http health check +- name: create a HTTP health check gcp_compute_http_health_check: name: httphealthcheck-backendservice healthy_threshold: 10 @@ -149,7 +149,7 @@ #--------------------------------------------------------- # Post-test teardown # 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: name: httphealthcheck-backendservice healthy_threshold: 10