From e29893226d58757d0af30d0097fd0881136c91ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Huss?= Date: Wed, 24 Jan 2024 16:12:35 +0100 Subject: [PATCH] fixes --- oauth2/outputs.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oauth2/outputs.tf b/oauth2/outputs.tf index 547ba8e..77b041b 100644 --- a/oauth2/outputs.tf +++ b/oauth2/outputs.tf @@ -2,6 +2,9 @@ output "provider-id" { value = authentik_provider_oauth2.oauth2.id } +output "sso_signout_url" { + value = "https://${data.kubernetes_ingress_v1.authentik.spec[0].rule[0].host}/application/o/${var.component}-${var.instance}/end-session/" +} output "sso_configuration_url" { value = "https://${data.kubernetes_ingress_v1.authentik.spec[0].rule[0].host}/application/o/${var.component}-${var.instance}" }