mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
tests: fixing more fixed tests
- gcp_compute_ssl_certificate: region is not a supported parameter.
This commit is contained in:
parent
453907edf6
commit
24d09d17c3
3 changed files with 1 additions and 8 deletions
|
@ -133,7 +133,6 @@ EXAMPLES = '''
|
||||||
- name: create a SSL certificate
|
- name: create a SSL certificate
|
||||||
google.cloud.gcp_compute_ssl_certificate:
|
google.cloud.gcp_compute_ssl_certificate:
|
||||||
name: test_object
|
name: test_object
|
||||||
region: us-central1
|
|
||||||
description: A certificate for testing. Do not use this certificate in production
|
description: A certificate for testing. Do not use this certificate in production
|
||||||
certificate: |-
|
certificate: |-
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
cloud/gcp
|
cloud/gcp
|
||||||
unsupported
|
|
|
@ -16,7 +16,6 @@
|
||||||
- name: delete a SSL certificate
|
- name: delete a SSL certificate
|
||||||
google.cloud.gcp_compute_ssl_certificate:
|
google.cloud.gcp_compute_ssl_certificate:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
region: us-central1
|
|
||||||
description: A certificate for testing. Do not use this certificate in production
|
description: A certificate for testing. Do not use this certificate in production
|
||||||
certificate: |-
|
certificate: |-
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
@ -50,7 +49,6 @@
|
||||||
- name: create a SSL certificate
|
- name: create a SSL certificate
|
||||||
google.cloud.gcp_compute_ssl_certificate:
|
google.cloud.gcp_compute_ssl_certificate:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
region: us-central1
|
|
||||||
description: A certificate for testing. Do not use this certificate in production
|
description: A certificate for testing. Do not use this certificate in production
|
||||||
certificate: |-
|
certificate: |-
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
@ -103,7 +101,6 @@
|
||||||
- name: create a SSL certificate that already exists
|
- name: create a SSL certificate that already exists
|
||||||
google.cloud.gcp_compute_ssl_certificate:
|
google.cloud.gcp_compute_ssl_certificate:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
region: us-central1
|
|
||||||
description: A certificate for testing. Do not use this certificate in production
|
description: A certificate for testing. Do not use this certificate in production
|
||||||
certificate: |-
|
certificate: |-
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
@ -142,7 +139,6 @@
|
||||||
- name: delete a SSL certificate
|
- name: delete a SSL certificate
|
||||||
google.cloud.gcp_compute_ssl_certificate:
|
google.cloud.gcp_compute_ssl_certificate:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
region: us-central1
|
|
||||||
description: A certificate for testing. Do not use this certificate in production
|
description: A certificate for testing. Do not use this certificate in production
|
||||||
certificate: |-
|
certificate: |-
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
@ -195,7 +191,6 @@
|
||||||
- name: delete a SSL certificate that does not exist
|
- name: delete a SSL certificate that does not exist
|
||||||
google.cloud.gcp_compute_ssl_certificate:
|
google.cloud.gcp_compute_ssl_certificate:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
region: us-central1
|
|
||||||
description: A certificate for testing. Do not use this certificate in production
|
description: A certificate for testing. Do not use this certificate in production
|
||||||
certificate: |-
|
certificate: |-
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
|
Loading…
Add table
Reference in a new issue