From fdbf48cde63ddb602421b00ed7aa2532379683fe Mon Sep 17 00:00:00 2001 From: Trevor Richards Date: Tue, 22 Oct 2024 21:09:28 -0700 Subject: [PATCH] fix: missing https protocol --- tools/config/update-configmap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/config/update-configmap.sh b/tools/config/update-configmap.sh index 5368189c9..40cb4828d 100644 --- a/tools/config/update-configmap.sh +++ b/tools/config/update-configmap.sh @@ -36,11 +36,11 @@ fi readonly SITE_MINDER_LOGOUT_URL SOAM_KC="loginproxy.gov.bc.ca" -SERVER_FRONTEND='mychildcareservices.gov.bc.ca' +SERVER_FRONTEND='https://mychildcareservices.gov.bc.ca' if [ "$ENV_VAL" != "prod" ] then SOAM_KC="$NAMESPACE_SUFFIX.loginproxy.gov.bc.ca" - SERVER_FRONTEND="$ENV_VAL.$SERVER_FRONTEND" + SERVER_FRONTEND="https://$ENV_VAL.$SERVER_FRONTEND" fi readonly SOAM_KC readonly SERVER_FRONTEND