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

@ -76,6 +76,8 @@ variable "nextcloud_db_password" {}
variable "homepage_credentials" {
type = map(any)
}
variable "authentik_secret_key" {}
variable "authentik_postgres_password" {}
variable "ansible_prefix" {
default = "ANSIBLE_VAULT_PASSWORD_FILE=~/.ansible/vault_pass.txt ansible-playbook -i playbook/hosts.yaml playbook/linux.yml -t linux/initial_setup"
@ -365,6 +367,9 @@ module "kubernetes_cluster" {
nextcloud_db_password = var.nextcloud_db_password
homepage_credentials = var.homepage_credentials
authentik_secret_key = var.authentik_secret_key
authentik_postgres_password = var.authentik_postgres_password
}