mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-10 06:08:33 +01:00
feat: usermanagement keycloak
This commit is contained in:
9
roles/usermanagement/templates/keycloak.env
Normal file
9
roles/usermanagement/templates/keycloak.env
Normal file
@@ -0,0 +1,9 @@
|
||||
KEYCLOAK_ADMIN=admin
|
||||
KEYCLOAK_ADMIN_PASSWORD={{ keycloak_admin_password }}
|
||||
PROXY_ADDRESS_FORWARDING=true
|
||||
KC_PROXY=edge
|
||||
KC_LOG_LEVEL=ALL
|
||||
|
||||
KC_DB_URL_HOST=postgres
|
||||
KC_DB_USERNAME=keycloak
|
||||
KC_DB_PASSWORD={{ keycloak_postgres_password }}
|
||||
35
roles/usermanagement/templates/keycloak.yaml
Normal file
35
roles/usermanagement/templates/keycloak.yaml
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
|
||||
version: '3.3'
|
||||
|
||||
services:
|
||||
keycloak:
|
||||
container_name: keycloak-container
|
||||
command: start-dev --http-enabled=true
|
||||
image: quay.io/keycloak/keycloak:18.0.0
|
||||
env_file: keycloak.env
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5050:8080
|
||||
depends_on:
|
||||
- postgres
|
||||
secrets:
|
||||
- postgres_password
|
||||
postgres:
|
||||
container_name: postgres-container
|
||||
image: postgres:13.2
|
||||
env_file: postgres.env
|
||||
restart: unless-stopped
|
||||
secrets:
|
||||
- postgres_password
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
|
||||
secrets:
|
||||
postgres_password:
|
||||
file: postgres_password
|
||||
|
||||
volumes:
|
||||
postgres-data:
|
||||
|
||||
...
|
||||
3
roles/usermanagement/templates/postgres.env
Normal file
3
roles/usermanagement/templates/postgres.env
Normal file
@@ -0,0 +1,3 @@
|
||||
POSTGRES_DB=keycloak
|
||||
POSTGRES_PASSWORD_FILE=/run/secrets/postgres_password
|
||||
POSTGRES_USER=keycloak
|
||||
1
roles/usermanagement/templates/postgres_password
Normal file
1
roles/usermanagement/templates/postgres_password
Normal file
@@ -0,0 +1 @@
|
||||
{{ keycloak_postgres_password }}
|
||||
Reference in New Issue
Block a user