Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions plugins/modules/keycloak_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,9 @@ def create_or_update_executions(kc, config, check_mode, new_flow=False, realm='m
if kc26 and ("priority" not in new_exec or new_exec["priority"] is None):
new_exec["priority"] = new_exec["index"]

if not kc26:
del new_exec["priority"]

# Check if there exists an execution with same name/providerID, at the same level as new execution
exec_index = find_exec_in_executions(new_exec, existing_executions, changed_executions_ids)
if exec_index != -1:
Expand Down
Loading