Files
templates/blueprints/authentik/template.toml
Nico Pergande 9095db8607 feat(authentik): bump to 2026.2.2 and Postgres 18
Updates the Authentik blueprint from 2025.6.3 to the latest stable
2026.2.2, and bumps Postgres from 16-alpine to 18-alpine. Redis is
intentionally retained.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 19:03:40 +02:00

26 lines
578 B
TOML

[variables]
main_domain = "${domain}"
main_domain_1 = "${domain}"
pg_user = "authentik"
pg_db = "authentik"
[config]
[[config.domains]]
serviceName = "server"
port = 9000
host = "${main_domain}"
path = "/"
[[config.domains]]
serviceName = "server"
port = 9443
host = "${main_domain_1}"
path = "/"
[config.env]
PG_USER = "${pg_user}"
PG_DB = "${pg_db}"
PG_PASS = "${password:32}" # Password for PostgreSQL authentication
AUTHENTIK_SECRET_KEY = "${password:64}" # Secret key for Authentik authentication
AUTHENTIK_IMAGE = "ghcr.io/goauthentik/server"
AUTHENTIK_TAG = "2026.2.2"