mirror of
https://opendev.org/openstack/ansible-collections-openstack.git
synced 2026-05-06 05:13:01 +00:00
Replaced service_catalog return value in auth module with new catalog_service_info module. Change-Id: I1ca5082d643eb97e8cb951a4bccf92b78537d917
12 lines
306 B
YAML
12 lines
306 B
YAML
---
|
|
- name: Authenticate to the cloud
|
|
openstack.cloud.auth:
|
|
cloud={{ cloud }}
|
|
register: auth
|
|
|
|
- name: Assert return values of auth module
|
|
assert:
|
|
that:
|
|
# allow new fields to be introduced but prevent fields from being removed
|
|
- expected_fields|difference(auth.keys())|length == 0
|