mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-09 02:45:17 +00:00
14 lines
554 B
YAML
14 lines
554 B
YAML
- name: "Update {{ KEYCLOAK_REALM }} REALM mail settings from realm dictionary"
|
|
keycloak_kcadm_update:
|
|
object_kind: "realm"
|
|
lookup_field: "id"
|
|
lookup_value: "{{ KEYCLOAK_REALM }}"
|
|
desired:
|
|
smtpServer: "{{ KEYCLOAK_DICTIONARY_REALM.smtpServer }}"
|
|
merge_path: "smtpServer"
|
|
kcadm_exec: "{{ KEYCLOAK_EXEC_KCADM }}"
|
|
assert_mode: "{{ MODE_ASSERT }}"
|
|
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|
|
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
|
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|