mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-21 21:45:36 +00:00
31 lines
965 B
YAML
31 lines
965 B
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
|
|
|
|
- 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 }}'"
|
|
include_tasks: update/02_mail.yml
|
|
|
|
- name: "Load RBAC Update routines for '{{ application_id }}'"
|
|
include_tasks: update/03_rbac_client_scope.yml
|
|
|
|
- name: "Load LDAP Update routines for '{{ application_id }}'"
|
|
include_tasks: update/04_ldap.yml
|
|
when: KEYCLOAK_LDAP_ENABLED | bool
|