summaryrefslogtreecommitdiff
path: root/test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml
diff options
context:
space:
mode:
authorThe Magician <magic-modules@google.com>2019-08-12 10:41:41 -0700
committeransibot <ansibot@users.noreply.github.com>2019-08-12 13:41:41 -0400
commit687da46a85746ad8d8e90124f558a7e443656780 (patch)
tree97d3be7d2c8423c1a359cbd53c7c0f02f338c064 /test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml
parent08558205740c4c5e133e9bb6aecbaed28b8f68ba (diff)
downloadansible-687da46a85746ad8d8e90124f558a7e443656780.tar.gz
Bug fixes for GCP modules (#60338)
Diffstat (limited to 'test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml')
-rw-r--r--test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml b/test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml
index 72af987ecf..b18a08ba10 100644
--- a/test/integration/targets/gcp_compute_target_https_proxy/tasks/main.yml
+++ b/test/integration/targets/gcp_compute_target_https_proxy/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-targethttpsproxy
healthy_threshold: 10
@@ -47,7 +47,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: present
register: backendservice
-- name: create a url map
+- name: create a URL map
gcp_compute_url_map:
name: urlmap-targethttpsproxy
default_service: "{{ backendservice }}"
@@ -56,7 +56,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: present
register: urlmap
-- name: create a ssl certificate
+- name: create a SSL certificate
gcp_compute_ssl_certificate:
name: sslcert-targethttpsproxy
description: A certificate for testing. Do not use this certificate in production
@@ -89,7 +89,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: present
register: sslcert
-- name: delete a target https proxy
+- name: delete a target HTTPS proxy
gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@@ -100,7 +100,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: absent
#----------------------------------------------------------
-- name: create a target https proxy
+- name: create a target HTTPS proxy
gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@@ -130,7 +130,7 @@
that:
- results['resources'] | length == 1
# ----------------------------------------------------------------------------
-- name: create a target https proxy that already exists
+- name: create a target HTTPS proxy that already exists
gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@@ -146,7 +146,7 @@
that:
- result.changed == false
#----------------------------------------------------------
-- name: delete a target https proxy
+- name: delete a target HTTPS proxy
gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@@ -176,7 +176,7 @@
that:
- results['resources'] | length == 0
# ----------------------------------------------------------------------------
-- name: delete a target https proxy that does not exist
+- name: delete a target HTTPS proxy that does not exist
gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@@ -194,7 +194,7 @@
#---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
-- name: delete a ssl certificate
+- name: delete a SSL certificate
gcp_compute_ssl_certificate:
name: sslcert-targethttpsproxy
description: A certificate for testing. Do not use this certificate in production
@@ -228,7 +228,7 @@
state: absent
register: sslcert
ignore_errors: true
-- name: delete a url map
+- name: delete a URL map
gcp_compute_url_map:
name: urlmap-targethttpsproxy
default_service: "{{ backendservice }}"
@@ -252,7 +252,7 @@
state: absent
register: backendservice
ignore_errors: true
-- name: delete a http health check
+- name: delete a HTTP health check
gcp_compute_http_health_check:
name: httphealthcheck-targethttpsproxy
healthy_threshold: 10