add linkwarden[ci skip]

This commit is contained in:
Viktor Barzin 2024-11-23 12:15:21 +00:00
parent 24267941bc
commit 15da41c29b
3 changed files with 165 additions and 0 deletions

View file

@ -63,6 +63,9 @@ variable "nextcloud_db_password" {}
variable "homepage_credentials" {}
variable "authentik_secret_key" {}
variable "authentik_postgres_password" {}
variable "linkwarden_postgresql_password" {}
variable "linkwarden_authentik_client_id" {}
variable "linkwarden_authentik_client_secret" {}
resource "null_resource" "core_services" {
# List all the core modules that must be provisioned first
@ -522,3 +525,10 @@ module "authentik" {
postgres_password = var.authentik_postgres_password
}
module "linkwarden" {
source = "./linkwarden"
tls_secret_name = var.tls_secret_name
postgresql_password = var.linkwarden_postgresql_password
authentik_client_id = var.linkwarden_authentik_client_id
authentik_client_secret = var.linkwarden_authentik_client_secret
}