Skip to content

Commit

Permalink
add some temp logging to ecs deploy script for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
traskowskycaci committed Jan 17, 2025
1 parent 87213e7 commit a8af25b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/ecs-deploy-task-container
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ if [[ "${name}" == "connect-to-gex-via-sftp" ]] && [[ "${environment}" != "prd"
fi

echo "Checking for existence of variables file"
echo "Checking for existence of variables file at: ${DIR}/../config/env/${environment}.${name}.env"
if [[ "${name}" == "process-tpps" ]] && [[ "${environment}" == "exp" ]]; then
echo "Checking for existence of specifically process-tpps variables file at: ${DIR}/../config/env/${environment}.${name}.env"
exit 0
fi

variables_file="${DIR}/../config/env/${environment}.${name}.env"
if [ ! -f "${variables_file}" ]; then
Expand Down

0 comments on commit a8af25b

Please sign in to comment.