mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-18 17:01:22 -07:00
Adding namespace on integration tests + examples
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
6c7c5f4977
commit
516fada880
130 changed files with 570 additions and 570 deletions
|
@ -160,7 +160,7 @@ notes:
|
|||
|
||||
EXAMPLES = '''
|
||||
- name: create a instance group
|
||||
gcp_compute_instance_group:
|
||||
google.cloud.gcp_compute_instance_group:
|
||||
name: instancegroup-targethttpsproxy
|
||||
zone: us-central1-a
|
||||
project: "{{ gcp_project }}"
|
||||
|
@ -170,7 +170,7 @@ EXAMPLES = '''
|
|||
register: instancegroup
|
||||
|
||||
- name: create a HTTP health check
|
||||
gcp_compute_http_health_check:
|
||||
google.cloud.gcp_compute_http_health_check:
|
||||
name: httphealthcheck-targethttpsproxy
|
||||
healthy_threshold: 10
|
||||
port: 8080
|
||||
|
@ -183,7 +183,7 @@ EXAMPLES = '''
|
|||
register: healthcheck
|
||||
|
||||
- name: create a backend service
|
||||
gcp_compute_backend_service:
|
||||
google.cloud.gcp_compute_backend_service:
|
||||
name: backendservice-targethttpsproxy
|
||||
backends:
|
||||
- group: "{{ instancegroup.selfLink }}"
|
||||
|
@ -197,7 +197,7 @@ EXAMPLES = '''
|
|||
register: backendservice
|
||||
|
||||
- name: create a URL map
|
||||
gcp_compute_url_map:
|
||||
google.cloud.gcp_compute_url_map:
|
||||
name: urlmap-targethttpsproxy
|
||||
default_service: "{{ backendservice }}"
|
||||
project: "{{ gcp_project }}"
|
||||
|
@ -207,7 +207,7 @@ EXAMPLES = '''
|
|||
register: urlmap
|
||||
|
||||
- name: create a SSL certificate
|
||||
gcp_compute_ssl_certificate:
|
||||
google.cloud.gcp_compute_ssl_certificate:
|
||||
name: sslcert-targethttpsproxy
|
||||
description: A certificate for testing. Do not use this certificate in production
|
||||
certificate: |-
|
||||
|
@ -241,7 +241,7 @@ EXAMPLES = '''
|
|||
register: sslcert
|
||||
|
||||
- name: create a target HTTPS proxy
|
||||
gcp_compute_target_https_proxy:
|
||||
google.cloud.gcp_compute_target_https_proxy:
|
||||
name: test_object
|
||||
ssl_certificates:
|
||||
- "{{ sslcert }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue