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
|
|
|
|
loop:
|
|
|
|
- keycloak.conf
|
|
|
|
- cache-ispn.xml
|
2021-02-15 19:58:53 +01:00
|
|
|
notify: Restart Keycloak
|
|
|
|
|
|
|
|
tags: [ 'keycloak', 'keycloak_db', 'keycloak_conf' ]
|