mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-15 01:27:11 +00:00
10 lines
397 B
YAML
10 lines
397 B
YAML
- name: "Update {{ KEYCLOAK_REALM }} REALM mail settings from realm dictionary"
|
|
include_tasks: _update.yml
|
|
vars:
|
|
kc_object_kind: "realm"
|
|
kc_lookup_field: "id"
|
|
kc_lookup_value: "{{ KEYCLOAK_REALM }}"
|
|
kc_desired:
|
|
smtpServer: "{{ KEYCLOAK_DICTIONARY_REALM.smtpServer | default({}, true) }}"
|
|
kc_merge_path: "smtpServer"
|
|
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}" |