From 5ba5a77697ed4c5727879e8ffd1ca501ce65bbbe Mon Sep 17 00:00:00 2001 From: Joel Azwar <43277890+joelazwar@users.noreply.github.com> Date: Sat, 19 Feb 2022 10:28:11 -0500 Subject: [PATCH] changed deploy script env variable JWT_TOKEN -> JWT_SECRET (#2992) --- tools/autodeployment/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/autodeployment/deploy.sh b/tools/autodeployment/deploy.sh index 238848bb45..5d3c11992a 100755 --- a/tools/autodeployment/deploy.sh +++ b/tools/autodeployment/deploy.sh @@ -41,7 +41,7 @@ echo "GITHUB_TOKEN=$3" >> $ENV_FILE # across all containers for this deployment. This isn't ideal, since it will # invalidate sessions whenever we deploy, but that's better than hard-coding it. We should # find a way to secure this for longer. -echo "JWT_TOKEN=$(uuidgen)" >> $ENV_FILE +echo "JWT_SECRET=$(uuidgen)" >> $ENV_FILE echo "Building $ENV Container"