mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 18:35:11 +00:00
14 lines
526 B
YAML
14 lines
526 B
YAML
- name: "Update Master REALM mail settings from realm dictionary"
|
|
keycloak_kcadm_update:
|
|
object_kind: "realm"
|
|
lookup_field: "id"
|
|
lookup_value: "master"
|
|
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 }}"
|