openstack-ansible-os_keystone/tasks/main_keystone_federation_sp_idp_setup.yml
Dmitriy Rabotyagov a6b4f71010 Auto-fix usage of modules via FQCN
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
2025-02-12 15:44:03 +00:00

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