From 7027b3166780e42df2a0493d1a1d67e3c2f6ea92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?c=C4=83t=C4=83lin?= Date: Tue, 31 Dec 2024 13:37:42 +0100 Subject: [PATCH] feat: add prowlarr and qbit tofu deployments --- tofu/authentik/main.tf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/tofu/authentik/main.tf b/tofu/authentik/main.tf index 788b766..2313b38 100644 --- a/tofu/authentik/main.tf +++ b/tofu/authentik/main.tf @@ -146,6 +146,27 @@ module "lidarr" { app_icon = "https://lidarr.audio/img/background/logo.png" } +module "qbit" { + source = "../modules/authentik-proxy" + app_name = "qBit" + app_slug = "qbit" + app_access_group_id = authentik_group.admins.id + app_url = "https://qbit.fukurokuju.dev" + internal_host = "http://192.168.1.3:38080" + internal_host_ssl_validation = false +} + +module "prowlarr" { + source = "../modules/authentik-proxy" + app_name = "Prowlarr" + app_slug = "prowlarr" + app_access_group_id = authentik_group.admins.id + app_url = "https://prowlarr.fukurokuju.dev" + internal_host = "http://192.168.1.3:38014" + internal_host_ssl_validation = false +} + + module "sftpgo" { source = "../modules/authentik-oidc" app_name = "SFTPGo"