tests: fix google_compute_route test

google_compute_route was creating legacy subnetworks in the
example, which are now deprecated.
This commit is contained in:
Yusuke Tsutsumi 2022-10-08 18:24:04 +00:00
parent 7cd653e50d
commit d52e5f0c3c
2 changed files with 3 additions and 2 deletions

View file

@ -1,2 +1 @@
cloud/gcp
unsupported
cloud/gcp

View file

@ -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 route
@ -147,6 +148,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