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: create a ssl certificate
- name: create a SSL certificate
gcp_compute_ssl_certificate:
name: sslcert-targetsslproxy
description: A certificate for testing. Do not use this certificate in production
@ -84,7 +84,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: present
register: sslcert
- name: delete a target ssl proxy
- name: delete a target SSL proxy
gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@ -95,7 +95,7 @@
service_account_file: "{{ gcp_cred_file }}"
state: absent
#----------------------------------------------------------
- name: create a target ssl proxy
- name: create a target SSL proxy
gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@ -125,7 +125,7 @@
that:
- results['resources'] | length == 1
# ----------------------------------------------------------------------------
- name: create a target ssl proxy that already exists
- name: create a target SSL proxy that already exists
gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@ -141,7 +141,7 @@
that:
- result.changed == false
#----------------------------------------------------------
- name: delete a target ssl proxy
- name: delete a target SSL proxy
gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@ -171,7 +171,7 @@
that:
- results['resources'] | length == 0
# ----------------------------------------------------------------------------
- name: delete a target ssl proxy that does not exist
- name: delete a target SSL proxy that does not exist
gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
ssl_certificates:
@ -189,7 +189,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-targetsslproxy
description: A certificate for testing. Do not use this certificate in production