From 4783b4b73732bc98aee286be9b902ac9f9fe3df4 Mon Sep 17 00:00:00 2001 From: Gideon Goldberg <1764158+gidsg@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:09:38 +0000 Subject: [PATCH] add SECRET_KEY to download report CommonConfig enforces this to be populated which was causing a crash on script start --- copilot/download-report/manifest.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/copilot/download-report/manifest.yml b/copilot/download-report/manifest.yml index 6c99876d5..99dcef139 100644 --- a/copilot/download-report/manifest.yml +++ b/copilot/download-report/manifest.yml @@ -32,6 +32,7 @@ variables: # Pass environment variables as key value pairs. secrets: # Pass secrets from AWS Systems Manager (SSM) Parameter Store. NOTIFY_API_KEY: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/POST_AWARD_NOTIFY_API_KEY + SECRET_KEY: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/POST_AWARD_SECRET_KEY # Set email for production environments: @@ -39,3 +40,4 @@ environments: secrets: NOTIFY_API_KEY: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/POST_AWARD_NOTIFY_API_KEY NOTIFY_SEND_EMAIL: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/POST_AWARD_NOTIFY_SEND_EMAIL + SECRET_KEY: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/POST_AWARD_SECRET_KEY