mirror of
https://opendev.org/openstack/ansible-collections-openstack.git
synced 2026-05-06 13:23:06 +00:00
11 lines
266 B
YAML
11 lines
266 B
YAML
---
|
|
- name: List all cloud profiles
|
|
openstack.cloud.config:
|
|
register: config
|
|
# WARNING: This will output sensitive authentication information!!!!
|
|
|
|
- name: Assert config module
|
|
assert:
|
|
that:
|
|
- cloud in (config.clouds | map(attribute='name') | list)
|