mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-02 15:39:57 +00:00
This adds update/06_recaptcha.yml to update the registration reCAPTCHA authenticator from KEYCLOAK_DICTIONARY_REALM and wires it into the main Keycloak task flow. Ref: https://chatgpt.com/share/6929f91c-cc98-800f-9562-1c6ea802d72d
39 lines
1.3 KiB
YAML
39 lines
1.3 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
|
|
|
|
- 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: applications | get_app_conf(application_id, 'features.recaptcha', False)
|
|
|