Backport doc changes from facts->info change (#341)

Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
The Magician 2019-08-09 15:25:26 -07:00 committed by Alex Stephen
commit 1c89350d77
42 changed files with 107 additions and 107 deletions

View file

@ -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-targethttpproxy
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-targethttpproxy
default_service: "{{ backendservice }}"
@ -56,7 +56,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: present
register: urlmap
- name: delete a target http proxy
- name: delete a target HTTP proxy
gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
url_map: "{{ urlmap }}"
@ -65,7 +65,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: absent
#----------------------------------------------------------
- name: create a target http proxy
- name: create a target HTTP proxy
gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
url_map: "{{ urlmap }}"
@ -93,7 +93,7 @@
that:
- results['resources'] | length == 1
# ----------------------------------------------------------------------------
- name: create a target http proxy that already exists
- name: create a target HTTP proxy that already exists
gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
url_map: "{{ urlmap }}"
@ -107,7 +107,7 @@
that:
- result.changed == false
#----------------------------------------------------------
- name: delete a target http proxy
- name: delete a target HTTP proxy
gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
url_map: "{{ urlmap }}"
@ -135,7 +135,7 @@
that:
- results['resources'] | length == 0
# ----------------------------------------------------------------------------
- name: delete a target http proxy that does not exist
- name: delete a target HTTP proxy that does not exist
gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
url_map: "{{ urlmap }}"
@ -151,7 +151,7 @@
#---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: delete a url map
- name: delete a URL map
gcp_compute_url_map:
name: urlmap-targethttpproxy
default_service: "{{ backendservice }}"
@ -175,7 +175,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-targethttpproxy
healthy_threshold: 10