Bug fixes for GCP modules (#58851)

This commit is contained in:
The Magician 2019-07-09 11:35:04 -07:00 committed by ansibot
parent 4eba84ce78
commit d88f686976
3 changed files with 6 additions and 6 deletions

View file

@ -44,7 +44,7 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | length >= 1
- results['resources'] | map(attribute='name') | select("match", ".*{{ resource_name }}.*") | list | length == 1
# ----------------------------------------------------------------------------
- name: create a repository that already exists
gcp_sourcerepo_repository:
@ -82,7 +82,7 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | length == 0
- results['resources'] | map(attribute='name') | select("match", ".*{{ resource_name }}.*") | list | length == 0
# ----------------------------------------------------------------------------
- name: delete a repository that does not exist
gcp_sourcerepo_repository:

View file

@ -59,7 +59,7 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | length >= 1
- results['resources'] | map(attribute='name') | select("match", ".*{{resource_name}}-2.*") | list | length == 1
# ----------------------------------------------------------------------------
- name: create a instance that already exists
gcp_sql_instance:
@ -113,7 +113,7 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | length == 0
- results['resources'] | map(attribute='name') | select("match", ".*{{resource_name}}-2.*") | list | length == 0
# ----------------------------------------------------------------------------
- name: delete a instance that does not exist
gcp_sql_instance:

View file

@ -53,7 +53,7 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | length >= 1
- results['resources'] | map(attribute='name') | select("match", ".*{{ resource_name }}.*") | list | length == 1
# ----------------------------------------------------------------------------
- name: create a node that already exists
gcp_tpu_node:
@ -100,7 +100,7 @@
- name: verify that command succeeded
assert:
that:
- results['resources'] | length == 0
- results['resources'] | map(attribute='name') | select("match", ".*{{ resource_name }}.*") | list | length == 0
# ----------------------------------------------------------------------------
- name: delete a node that does not exist
gcp_tpu_node: