From a173a0ac0dc4fb6501d9ccd7ebfca19c229343fa Mon Sep 17 00:00:00 2001 From: Kevin Tran <112021023+kevbang@users.noreply.github.com> Date: Tue, 14 Apr 2026 20:29:38 -0500 Subject: [PATCH] Fix Email__ResendApiToken assignment in ec2_init.sh Updated environment variable assignment for Email__ResendApiToken. --- .github/workflows/ec2_init.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ec2_init.sh b/.github/workflows/ec2_init.sh index b11beee..7fe345f 100644 --- a/.github/workflows/ec2_init.sh +++ b/.github/workflows/ec2_init.sh @@ -87,7 +87,7 @@ LOGODEV_SECRET_KEY=$(aws ssm get-parameter \ --query "Parameter.Value" \ --output text) -Email__ResendApiToken=$(aws ssm get-parameter \ +RESEND_API_TOKEN=$(aws ssm get-parameter \ --name "/culinarycommand/prod/Email__ResendApiToken" \ --with-decryption \ --region us-east-2 \ @@ -111,6 +111,7 @@ AWS__Region=us-east-2 GOOGLE_API_KEY=${GOOGLE_API_KEY} LogoDev__PublishableKey=${LOGODEV_PUBLISHABLE_KEY} LogoDev__SecretKey=${LOGODEV_SECRET_KEY} +Email__ResendApiToken=${RESEND_API_TOKEN} EOF chmod 600 /etc/culinarycommand.env