2021-02-15 19:58:53 +01:00
|
|
|
---
|
|
|
|
- name: Manage the keycloak configuration
|
|
|
|
block:
|
2022-09-23 13:52:06 +02:00
|
|
|
- name: Install the Keycloak and infinispan configuration files
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: '{{ item }}.j2'
|
|
|
|
dest: '{{ keycloak_conf_directory }}/{{ item }}'
|
|
|
|
owner: root
|
|
|
|
group: root
|
2022-09-30 11:40:40 +02:00
|
|
|
loop: '{{ keycloak_configuration_files }}'
|
2021-02-15 19:58:53 +01:00
|
|
|
notify: Restart Keycloak
|
|
|
|
|
|
|
|
tags: [ 'keycloak', 'keycloak_db', 'keycloak_conf' ]
|