
Since ansible-core 2.10 it is recommended to use modules via FQCN In order to align with recommendation, we perform migration by applying suggestions made by `ansible-lint --fix=fqcn` Change-Id: I433d6fe347e21098f563881f3c1fe494231a0b62
14 lines
354 B
YAML
14 lines
354 B
YAML
---
|
|
- name: Including keystone_federation_sp_idp_setup tasks
|
|
ansible.builtin.include_tasks: keystone_federation_sp_idp_setup.yml
|
|
with_items: "{{ keystone_sp.trusted_idp_list }}"
|
|
loop_control:
|
|
loop_var: trusted_idp
|
|
no_log: true
|
|
when:
|
|
- keystone_service_setup | bool
|
|
- keystone_sp != {}
|
|
run_once: true
|
|
tags:
|
|
- keystone-config
|