2020-08-10 01:37:13 +02:00
|
|
|
---
|
|
|
|
# Default variables for the keycloak role
|
|
|
|
|
|
|
|
# Infrastructure
|
|
|
|
# Ansible instructions to deploy the infrastructure
|
|
|
|
# Copyright (C) 2019-2020 Christoph (Sheogorath) Kern
|
|
|
|
# Copyright (C) 2020 Alexander Wellbrock
|
|
|
|
# Copyright (C) 2020 Saibotk
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Install locations
|
|
|
|
keycloak_install_location: /srv/keycloak
|
|
|
|
keycloak_database_location: "{{ keycloak_install_location }}/database"
|
|
|
|
|
|
|
|
# The keycloak image to use
|
2021-06-24 23:28:32 +02:00
|
|
|
keycloak_baseimage: quay.io/keycloak/keycloak
|
2020-08-10 01:37:13 +02:00
|
|
|
|
|
|
|
# The keycloak & postgres version
|
|
|
|
# !!! Don't just update the postgres version, instead backup first and check if you need to migrate !!!
|
2020-10-12 21:10:28 +02:00
|
|
|
# renovate: depName=quay.io/keycloak/keycloak
|
2023-07-18 10:05:38 +00:00
|
|
|
keycloak_version: 22.0.1
|
2021-03-26 19:30:36 +01:00
|
|
|
# renovate: depName=docker.io/library/postgres
|
2022-05-18 02:05:57 +00:00
|
|
|
keycloak_postgres_version: 11.16
|
2020-08-10 01:37:13 +02:00
|
|
|
|
|
|
|
# The image tags
|
|
|
|
keycloak_image_version: "{{ keycloak_version }}"
|
|
|
|
keycloak_postgres_image_version: "{{ keycloak_postgres_version }}-alpine"
|
|
|
|
|
|
|
|
# The log level settings for keycloak
|
|
|
|
keycloak_log_level: "ERROR"
|
|
|
|
keycloak_root_log_level: "ERROR"
|
|
|
|
|
|
|
|
# The certresolver traefik should use for this domain
|
|
|
|
keycloak_traefik_certresolver: letsencrypt_http
|
|
|
|
|
|
|
|
# The domain which traefik will serve keycloak under
|
|
|
|
keycloak_domain: keycloak.example.com
|
|
|
|
|
|
|
|
# The database credentials.
|
|
|
|
keycloak_database_user: "keycloak"
|
2022-11-02 21:57:13 +01:00
|
|
|
keycloak_database_password: "{{ lookup('passwordstore', keycloak_domain + '/database' + ' create=true') }}"
|
2020-08-10 01:37:13 +02:00
|
|
|
|
|
|
|
# The default welcome theme keycloak will use
|
2022-02-12 20:14:14 +01:00
|
|
|
keycloak_theme_welcome: "{{ omit }}"
|
2020-08-10 01:37:13 +02:00
|
|
|
|
|
|
|
# The SELinux level that should be used for the postgres data folder/container
|
|
|
|
keycloak_postgres_selinux_level: "{{ omit }}"
|