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" + } }