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

@ -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