add authentik [ci skip]

This commit is contained in:
Viktor Barzin 2024-11-12 20:20:10 +00:00
parent 16cd13abc3
commit cb3ec53d41
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
6 changed files with 96 additions and 0 deletions

View file

@ -61,6 +61,8 @@ variable "diun_nfty_token" {}
variable "docker_config" {}
variable "nextcloud_db_password" {}
variable "homepage_credentials" {}
variable "authentik_secret_key" {}
variable "authentik_postgres_password" {}
resource "null_resource" "core_services" {
# List all the core modules that must be provisioned first
@ -512,3 +514,10 @@ module "matrix" {
source = "./matrix"
tls_secret_name = var.tls_secret_name
}
module "authentik" {
source = "./authentik"
tls_secret_name = var.tls_secret_name
secret_key = var.authentik_secret_key
postgres_password = var.authentik_postgres_password
}