Unguard items that can connect to authentik

This commit is contained in:
Jeroen Vijgen
2025-08-13 21:57:14 +03:00
committed by GitHub
parent f5624cf923
commit 51b8dea2db
3 changed files with 9 additions and 2 deletions
@@ -57,6 +57,5 @@ output "service_definition" {
primary_port = local.jellyfin_internal_port
endpoint = "http://${local.container_name}:${local.jellyfin_internal_port}"
subdomains = ["tv"]
is_guarded = true
}
}
@@ -3,6 +3,12 @@
# Visit the docs to find more https://docs.tandoor.dev/system/configuration/
# ---------------------------------------------------------------------------
# Setup OpenID
SOCIAL_PROVIDERS=
SOCIALACCOUNT_PROVIDERS=
ENABLE_SIGNUP=0
# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
SECRET_KEY=
DEBUG=0
@@ -42,6 +42,9 @@ locals {
]
tandoor_env_vars = {
SOCIAL_PROVIDERS = provider::dotenv::get_by_key("SOCIAL_PROVIDERS", local.env_file)
SOCIALACCOUNT_PROVIDERS = provider::dotenv::get_by_key("SOCIALACCOUNT_PROVIDERS", local.env_file)
ENABLE_SIGNUP = provider::dotenv::get_by_key("ENABLE_SIGNUP", local.env_file)
SECRET_KEY = provider::dotenv::get_by_key("SECRET_KEY", local.env_file)
DEBUG = provider::dotenv::get_by_key("DEBUG", local.env_file)
ALLOWED_HOSTS = provider::dotenv::get_by_key("ALLOWED_HOSTS", local.env_file)
@@ -98,6 +101,5 @@ output "service_definition" {
primary_port = local.tandoor_internal_port
endpoint = "http://${local.container_name}:${local.tandoor_internal_port}"
subdomains = ["tandoor"]
is_guarded = true
}
}