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

@ -13,7 +13,7 @@
#
# ----------------------------------------------------------------------------
# Pre-test setup
- name: delete a ssl policy
- name: delete a SSL policy
gcp_compute_ssl_policy:
name: "{{ resource_name }}"
profile: CUSTOM
@ -26,7 +26,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: absent
#----------------------------------------------------------
- name: create a ssl policy
- name: create a SSL policy
gcp_compute_ssl_policy:
name: "{{ resource_name }}"
profile: CUSTOM
@ -58,7 +58,7 @@
that:
- results['resources'] | length == 1
# ----------------------------------------------------------------------------
- name: create a ssl policy that already exists
- name: create a SSL policy that already exists
gcp_compute_ssl_policy:
name: "{{ resource_name }}"
profile: CUSTOM
@ -76,7 +76,7 @@
that:
- result.changed == false
#----------------------------------------------------------
- name: delete a ssl policy
- name: delete a SSL policy
gcp_compute_ssl_policy:
name: "{{ resource_name }}"
profile: CUSTOM
@ -108,7 +108,7 @@
that:
- results['resources'] | length == 0
# ----------------------------------------------------------------------------
- name: delete a ssl policy that does not exist
- name: delete a SSL policy that does not exist
gcp_compute_ssl_policy:
name: "{{ resource_name }}"
profile: CUSTOM