summaryrefslogtreecommitdiff
path: root/test/integration/targets/gcp_compute_target_tcp_proxy/tasks
diff options
context:
space:
mode:
authorThe Magician <magic-modules@google.com>2019-08-09 16:17:44 -0700
committeransibot <ansibot@users.noreply.github.com>2019-08-09 19:17:44 -0400
commit30ad73f1c189c6c978cdc79c97aa7d97704dfd20 (patch)
tree244cb2c494138621e74fc4327fdef2ddce54b539 /test/integration/targets/gcp_compute_target_tcp_proxy/tasks
parent5d4c3ad97ea5e3832725c0a4cc707e1c8b61d6d3 (diff)
downloadansible-30ad73f1c189c6c978cdc79c97aa7d97704dfd20.tar.gz
Bug fixes for GCP modules (#60339)
Diffstat (limited to 'test/integration/targets/gcp_compute_target_tcp_proxy/tasks')
-rw-r--r--test/integration/targets/gcp_compute_target_tcp_proxy/tasks/main.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/integration/targets/gcp_compute_target_tcp_proxy/tasks/main.yml b/test/integration/targets/gcp_compute_target_tcp_proxy/tasks/main.yml
index 8f24675699..8385d591b7 100644
--- a/test/integration/targets/gcp_compute_target_tcp_proxy/tasks/main.yml
+++ b/test/integration/targets/gcp_compute_target_tcp_proxy/tasks/main.yml
@@ -51,7 +51,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: present
register: backendservice
-- name: delete a target tcp proxy
+- name: delete a target TCP proxy
gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
proxy_header: PROXY_V1
@@ -61,7 +61,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: absent
#----------------------------------------------------------
-- name: create a target tcp proxy
+- name: create a target TCP proxy
gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
proxy_header: PROXY_V1
@@ -90,7 +90,7 @@
that:
- results['resources'] | length == 1
# ----------------------------------------------------------------------------
-- name: create a target tcp proxy that already exists
+- name: create a target TCP proxy that already exists
gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
proxy_header: PROXY_V1
@@ -105,7 +105,7 @@
that:
- result.changed == false
#----------------------------------------------------------
-- name: delete a target tcp proxy
+- name: delete a target TCP proxy
gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
proxy_header: PROXY_V1
@@ -134,7 +134,7 @@
that:
- results['resources'] | length == 0
# ----------------------------------------------------------------------------
-- name: delete a target tcp proxy that does not exist
+- name: delete a target TCP proxy that does not exist
gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
proxy_header: PROXY_V1