summaryrefslogtreecommitdiff
path: root/test/integration/targets/gcp_compute_http_health_check/tasks/main.yml
diff options
context:
space:
mode:
authorThe Magician <magic-modules@google.com>2019-08-12 11:34:21 -0700
committeransibot <ansibot@users.noreply.github.com>2019-08-12 14:34:20 -0400
commit6cb5b67b22c2457e49cdf9e79e9fc8039bd0d8f1 (patch)
treefc7951fac5440af9cc32c601c32f239fe1da68bf /test/integration/targets/gcp_compute_http_health_check/tasks/main.yml
parentbe459c00bf373530ac379e76e62d3dde7918e8d7 (diff)
downloadansible-6cb5b67b22c2457e49cdf9e79e9fc8039bd0d8f1.tar.gz
Bug fixes for GCP modules (#60115)
Diffstat (limited to 'test/integration/targets/gcp_compute_http_health_check/tasks/main.yml')
-rw-r--r--test/integration/targets/gcp_compute_http_health_check/tasks/main.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/integration/targets/gcp_compute_http_health_check/tasks/main.yml b/test/integration/targets/gcp_compute_http_health_check/tasks/main.yml
index 0ed41a0b62..5e27f31b38 100644
--- a/test/integration/targets/gcp_compute_http_health_check/tasks/main.yml
+++ b/test/integration/targets/gcp_compute_http_health_check/tasks/main.yml
@@ -13,7 +13,7 @@
#
# ----------------------------------------------------------------------------
# Pre-test setup
-- name: delete a http health check
+- name: delete a HTTP health check
gcp_compute_http_health_check:
name: "{{ resource_name }}"
healthy_threshold: 10
@@ -25,7 +25,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: absent
#----------------------------------------------------------
-- name: create a http health check
+- name: create a HTTP health check
gcp_compute_http_health_check:
name: "{{ resource_name }}"
healthy_threshold: 10
@@ -56,7 +56,7 @@
that:
- results['resources'] | length == 1
# ----------------------------------------------------------------------------
-- name: create a http health check that already exists
+- name: create a HTTP health check that already exists
gcp_compute_http_health_check:
name: "{{ resource_name }}"
healthy_threshold: 10
@@ -73,7 +73,7 @@
that:
- result.changed == false
#----------------------------------------------------------
-- name: delete a http health check
+- name: delete a HTTP health check
gcp_compute_http_health_check:
name: "{{ resource_name }}"
healthy_threshold: 10
@@ -104,7 +104,7 @@
that:
- results['resources'] | length == 0
# ----------------------------------------------------------------------------
-- name: delete a http health check that does not exist
+- name: delete a HTTP health check that does not exist
gcp_compute_http_health_check:
name: "{{ resource_name }}"
healthy_threshold: 10