mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
tests: fix key_ring and redis
- gcp_key_ring was already passing, needed to be enabled. - gcp_redis_instance was using legacy networks, switch to net networks.
This commit is contained in:
parent
f1f41177e4
commit
1a753eff05
5 changed files with 6 additions and 5 deletions
|
@ -21,6 +21,7 @@ SERVICE_LIST=(
|
|||
"dns"
|
||||
"file.googleapis.com"
|
||||
"ml.googleapis.com"
|
||||
"redis.googleapis.com"
|
||||
"runtimeconfig.googleapis.com"
|
||||
"sourcerepo.googleapis.com"
|
||||
"spanner.googleapis.com"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
cloud/gcp
|
||||
unsupported
|
||||
cloud/gcp
|
|
@ -1,2 +1,2 @@
|
|||
cloud/gcp
|
||||
unsupported
|
||||
unsupported
|
|
@ -1,2 +1 @@
|
|||
cloud/gcp
|
||||
unsupported
|
||||
cloud/gcp
|
|
@ -19,6 +19,7 @@
|
|||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
auto_create_subnetworks: true
|
||||
state: present
|
||||
register: network
|
||||
- name: delete a instance
|
||||
|
@ -165,6 +166,7 @@
|
|||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
auto_create_subnetworks: true
|
||||
state: absent
|
||||
register: network
|
||||
ignore_errors: true
|
||||
|
|
Loading…
Add table
Reference in a new issue