From 88314e88bdcd71f560fbaccf987a2a2229a7c61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Huss?= Date: Mon, 27 May 2024 13:13:45 +0200 Subject: [PATCH] fix --- apps/taiga/taiga_ConfigMap.tf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/taiga/taiga_ConfigMap.tf b/apps/taiga/taiga_ConfigMap.tf index 9ddd723..50b191d 100644 --- a/apps/taiga/taiga_ConfigMap.tf +++ b/apps/taiga/taiga_ConfigMap.tf @@ -18,7 +18,7 @@ resource "kubectl_manifest" "cm_env_back" { SESSION_COOKIE_SECURE: "False" CSRF_COOKIE_SECURE: "False" ENABLE_TELEMETRY: "False" - PUBLIC_REGISTER_ENABLED: "False" + PUBLIC_REGISTER_ENABLED: "True" ENABLE_GITHUB_AUTH: "False" ENABLE_GITLAB_AUTH: "True" ENABLE_SLACK: "False" @@ -26,6 +26,7 @@ resource "kubectl_manifest" "cm_env_back" { ENABLE_JIRA_IMPORTER: "False" ENABLE_TRELLO_IMPORTER: "False" OPENID_CONNECT_SCOPES: "openid email profile" + GITLAB_URL="${module.oauth2.sso_configuration_url}" EOF } @@ -66,7 +67,7 @@ resource "kubectl_manifest" "cm_env_front" { SESSION_COOKIE_SECURE: "false" CSRF_COOKIE_SECURE: "false" ENABLE_TELEMETRY: "false" - PUBLIC_REGISTER_ENABLED: "false" + PUBLIC_REGISTER_ENABLED: "true" ENABLE_GITHUB_AUTH: "false" ENABLE_GITLAB_AUTH: "true" ENABLE_SLACK: "false" @@ -74,7 +75,7 @@ resource "kubectl_manifest" "cm_env_front" { ENABLE_JIRA_IMPORTER: "false" ENABLE_TRELLO_IMPORTER: "false" OPENID_CONNECT_SCOPES: "openid email profile" - + GITLAB_URL="${module.oauth2.sso_configuration_url}" EOF }