Merge "Correctly set openstack_domains for ansible >= 2.9"

This commit is contained in:
Zuul 2020-04-16 21:28:52 +00:00 committed by Gerrit Code Review
commit 25c36f1cad
1 changed files with 5 additions and 1 deletions

View File

@ -17,4 +17,8 @@
- name: Collect OpenStack Keystone domains infos
os_keystone_domain_info:
cloud: "{{ tripleo_keystone_resources_cloud_name }}"
register: openstack_domains
register: domain_result
- name: Set openstack_domains fact
set_fact:
openstack_domains: "{{ domain_result.openstack_domains }}"