mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-29 08:01:31 -07:00
16 lines
396 B
YAML
16 lines
396 B
YAML
---
|
|
- name: TEST | print hosts
|
|
ansible.builtin.debug:
|
|
var: groups
|
|
|
|
- name: TEST | assert instances exist
|
|
ansible.builtin.assert:
|
|
that:
|
|
- groups['all'] | length > 0
|
|
|
|
- name: TEST | assert grouping works
|
|
ansible.builtin.assert:
|
|
that:
|
|
- groups['gcp_env_prod'] | length == 2
|
|
- groups['gcp_cluster_db'] | length == 1
|
|
- groups['gcp_cluster_web'] | length == 1
|