Skip to content

Commit a95ac8c

Browse files
committed
Correct proxygen secret name
Signed-off-by: Connor Avery <[email protected]>
1 parent 5fa4728 commit a95ac8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/deploy_api.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ echo
9393
echo "Retrieving proxygen credentials"
9494

9595
# Retrieve the proxygen private key and client private key and cert from AWS Secrets Manager
96-
proxygen_private_key_arn=$(aws cloudformation list-exports --query "Exports[?Name=='account-resources:${PROXYGEN_PRIVATE_KEY_NAME}'].Value" --output text)
96+
proxygen_private_key_arn=$(aws cloudformation list-exports --query "Exports[?Name=='secrets:${PROXYGEN_PRIVATE_KEY_NAME}'].Value" --output text)
9797

9898
if [[ "${ENABLE_MUTUAL_TLS}" == "true" ]]; then
9999
echo

.github/workflows/sam_release_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
STACK_NAME: ${{ inputs.STACK_NAME }}
198198
AWS_ENVIRONMENT: ${{ inputs.TARGET_ENVIRONMENT }}
199199
APIGEE_ENVIRONMENT: ${{ inputs.APIGEE_ENVIRONMENT }}
200-
PROXYGEN_PRIVATE_KEY_NAME: PrescriptonsForPatientsProxygenPrivateKey
200+
PROXYGEN_PRIVATE_KEY_NAME: PrescriptionsForPatientsProxygenPrivateKey
201201
PROXYGEN_KID: prescriptions-for-patients
202202
DRY_RUN: false
203203
ENABLE_MUTUAL_TLS: ${{ inputs.ENABLE_MUTUAL_TLS }}

0 commit comments

Comments
 (0)