From 0b5361323a106e90a3be34d4fb99776053a3aa57 Mon Sep 17 00:00:00 2001 From: ab Date: Sat, 8 Nov 2025 22:27:35 +0000 Subject: [PATCH] Update terraform/authentik/oauth2-apps.tfvars --- terraform/authentik/oauth2-apps.tfvars | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/terraform/authentik/oauth2-apps.tfvars b/terraform/authentik/oauth2-apps.tfvars index 1d196e8..cfe0d61 100644 --- a/terraform/authentik/oauth2-apps.tfvars +++ b/terraform/authentik/oauth2-apps.tfvars @@ -167,5 +167,26 @@ oauth_applications = { create_group = true signing_key = "1b1b5bec-034a-4d96-871a-133f11322360" } + + "openwebui" = { + name = "OpenWeb UI" + slug = "openwebui" + group = "Tools" + meta_description = "OpenWeb UI" + meta_icon = "https://ollama.com/public/ollama.png" + redirect_uris = [ + "https://openwebui.company/oauth/oidc/callback", + ] + meta_launch_url = "https://ps.hexor.cy" + client_type = "confidential" + include_claims_in_id_token = true + access_code_validity = "minutes=1" + access_token_validity = "minutes=5" + refresh_token_validity = "days=30" + scope_mappings = ["openid", "profile", "email"] + access_groups = ["admins"] + create_group = true + signing_key = "1b1b5bec-034a-4d96-871a-133f11322360" + } }