Files
openstack-ansible-os_keystone/tasks/main_keystone_federation_sp_idp_setup.yml
Dmitriy Rabotyagov 93c3d2e432 Auto-fix yaml rules
In order to reduce divergance with ansible-lint rules, we apply
auto-fixing of violations.

In current patch we replace all kind of truthy variables with
`true` or `false` values to align with recommendations along with
alignment of used quotes.

Change-Id: I07f9d0d1e0efa3fbefbc3467ea23da6ed3ef40a2
2025-02-12 12:50:17 +01:00

14 lines
338 B
YAML

---
- name: Including keystone_federation_sp_idp_setup tasks
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