Skip to content
Snippets Groups Projects
Commit 294cfd0e authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

Add custom keycloak deployment option

parent 40484769
No related branches found
No related tags found
No related merge requests found
......@@ -7,3 +7,4 @@ keycloak_jboss_home: "{{ keycloak_dir }}/keycloak-{{ keycloak_version }}"
keycloak_log_dir: "{{ keycloak_jboss_home }}/standalone/log"
keycloak_proxy_address_forwarding: "false"
keycloak_custom_themes: []
keycloak_custom_deployments: []
\ No newline at end of file
......@@ -155,3 +155,10 @@
repo: "{{ item.repository }}"
with_items: "{{ keycloak_custom_themes }}"
notify: restart keycloak
- name: Install custom keycloak deployments
git:
dest: "{{ keycloak_jboss_home }}/deployments/{{ item.name }}"
repo: "{{ item.url }}"
with_items: "{{ keycloak_custom_deployments }}"
notify: restart keycloak
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment