mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 10:26:35 +00:00
Implements automated merging of kc.user.profile.config using the generic _update.yml handler. Fixes missing safety guard for components without a 'name' attribute and aligns providerId validation logic. Reference: https://chatgpt.com/share/692b3337-a224-800f-8617-32f47a5af1df
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
---
|
|
- name: "Load meta"
|
|
include_tasks: 01_meta.yml
|
|
when: not KEYCLOAK_LOAD_DEPENDENCIES | bool
|
|
|
|
- name: "Load cleanup routine for '{{ application_id }}'"
|
|
include_tasks: 02_cleanup.yml
|
|
when: MODE_CLEANUP | bool
|
|
|
|
- name: "Load init routine for '{{ application_id }}'"
|
|
include_tasks: 03_init.yml
|
|
|
|
- name: "Load the depdendencies required by '{{ application_id }}'"
|
|
include_tasks: 04_dependencies.yml
|
|
when: KEYCLOAK_LOAD_DEPENDENCIES | bool
|
|
|
|
- name: "Load Login routines for '{{ application_id }}'"
|
|
include_tasks: 05_login.yml
|
|
|
|
- name: "Load Client Update routines for '{{ application_id }}'"
|
|
include_tasks: update/01_client.yml
|
|
|
|
- name: "Load Mail Update routines for '{{ application_id }} - {{ KEYCLOAK_REALM }}'"
|
|
include_tasks: update/02_mail_realm.yml
|
|
|
|
- name: "Load Mail Update routines for '{{ application_id }} - master'"
|
|
include_tasks: update/03_mail_master.yml
|
|
|
|
- name: "Load RBAC Update routines for '{{ application_id }}'"
|
|
include_tasks: update/04_rbac_client_scope.yml
|
|
|
|
- name: "Load LDAP Update routines for '{{ application_id }}'"
|
|
include_tasks: update/05_ldap.yml
|
|
when: KEYCLOAK_LDAP_ENABLED | bool
|
|
|
|
- name: "Load reCAPTCHA Update routines for '{{ application_id }}'"
|
|
include_tasks: update/06_recaptcha.yml
|
|
when: KEYCLOAK_RECAPTCHA_ENABLED | bool
|
|
|
|
- name: "Load UserProfile (declarative) Update routines for '{{ application_id }}'"
|
|
include_tasks: update/07_userprofile.yml
|