Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maximelaboisson committed Apr 30, 2024
1 parent be753fb commit fc986ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parse-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ load_dir() {
# 2. $WORKDIR/aws-secret

# For aws-parameter-store, we strip the first character since it's always a '_'
AWS_PARAMETER_STORE_VARS=$(load_dir "$WORKDIR/aws-parameter-store" 1 $APPLICATION_NAME)
AWS_PARAMETER_STORE_VARS=$(load_dir "$WORKDIR/aws-parameter-store" 1 "$APPLICATION_NAME")
echo "$AWS_PARAMETER_STORE_VARS"

AWS_SECRET_VARS=$(load_dir "$WORKDIR/aws-secret" 0 $APPLICATION_NAME)
AWS_SECRET_VARS=$(load_dir "$WORKDIR/aws-secret" 0 "$APPLICATION_NAME")
echo "$AWS_SECRET_VARS"

ENV_VARS=""
Expand Down

0 comments on commit fc986ec

Please sign in to comment.