1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 05:09:12 +00:00

keycloak_authentication_v2: covers idp flow overrides in safe swap (fix 11582) (#11601)

* 11582 keycloak_authentication_v2 covers idp flow overrides in safe swap

* 11583 update documentation and comments
This commit is contained in:
thomasbargetz 2026-03-18 06:49:24 +01:00 committed by GitHub
parent 5e4fbfeee0
commit e7a253b4c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 167 additions and 61 deletions

View file

@ -9,18 +9,26 @@
register: result
until: result is success
- name: Executing Flow Creation tests
- name: Executing flow creation tests
ansible.builtin.include_tasks:
file: tests/test_flow_creation.yml
- name: Executing unused Flow Modification tests
- name: Executing unused flow modification tests
ansible.builtin.include_tasks:
file: tests/test_unused_flow_modification.yml
- name: Executing used Flow Modification tests
- name: Executing used default browser flow modification tests
ansible.builtin.include_tasks:
file: tests/test_used_flow_modification.yml
file: tests/test_used_default_browser_flow_modification.yml
- name: Executing Flow Deletion tests
- name: Executing client flow override flow modification tests
ansible.builtin.include_tasks:
file: tests/test_client_flow_override_flow_modification.yml
- name: Executing identity provider first and post flow override flow modification tests
ansible.builtin.include_tasks:
file: tests/test_identity_provider_flow_overrides_flow_modification.yml
- name: Executing flow deletion tests
ansible.builtin.include_tasks:
file: tests/test_flow_deletion.yml