From c26cd0b7e7930228ded869b5cfdee9d7fc4a95e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Huss?= Date: Wed, 24 Jan 2024 15:47:25 +0100 Subject: [PATCH] fixes --- oauth2/outputs.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oauth2/outputs.tf b/oauth2/outputs.tf index 9b22cc4..da1c7b4 100644 --- a/oauth2/outputs.tf +++ b/oauth2/outputs.tf @@ -8,6 +8,9 @@ output "sso_configuration_url" { output "sso_userinfo" { value = "https://${data.kubernetes_ingress_v1.authentik.spec[0].rule[0].host}/application/o/userinfo/" } +output "sso_authorize" { + value = "https://${data.kubernetes_ingress_v1.authentik.spec[0].rule[0].host}/application/o/authorize/" +} output "client_id" { value = data.kubernetes_secret_v1.oauth2-client-id.data["client-id"] }