summaryrefslogtreecommitdiff
path: root/test/integration/targets/gcp_compute_http_health_check/tasks/main.yml
diff options
context:
space:
mode:
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