Merge "Use domain variable instead of generic resource data" into stable/train

This commit is contained in:
Zuul 2020-02-14 00:53:03 +00:00 committed by Gerrit Code Review
commit 907af1ceb3
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
async: 60 async: 60
poll: 0 poll: 0
register: tripleo_keystone_resources_domain_results register: tripleo_keystone_resources_domain_results
loop: "{{ batched_tripleo_keystone_resources_data }}" loop: "{{ batched_tripleo_keystone_resources_domains }}"
loop_control: loop_control:
loop_var: tripleo_keystone_resources_domain loop_var: tripleo_keystone_resources_domain

View File

@ -45,7 +45,7 @@
include_tasks: domains.yml include_tasks: domains.yml
loop: "{{ tripleo_keystone_resources_catalog_config | get_key_from_dict(key='domains') | batch(tripleo_keystone_resources_batch) | list }}" loop: "{{ tripleo_keystone_resources_catalog_config | get_key_from_dict(key='domains') | batch(tripleo_keystone_resources_batch) | list }}"
loop_control: loop_control:
loop_var: batched_tripleo_keystone_resources_data loop_var: batched_tripleo_keystone_resources_domains
# We need to gather domains so later we can convert a domain name into a domain ID. # We need to gather domains so later we can convert a domain name into a domain ID.
# This is needed because os_user_role doesn't do the conversion yet in the version # This is needed because os_user_role doesn't do the conversion yet in the version