Skip to content

Commit

Permalink
testing parameter store
Browse files Browse the repository at this point in the history
  • Loading branch information
priyaranjanpatil committed Dec 4, 2023
1 parent ace8150 commit 2ed37eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
VAR_LIST= aws ssm get-parameters-by-path --path "/core/es_indexer/dev_ecr_ecs_config/"
echo VAR_LIST
for var in "$(VAR_LIST | jq -r '.Parameters[]')"; do
for var in $(VAR_LIST | jq -r '.Parameters[]'); do
name=$(echo $var | jq -r .Name)
value=$(echo $var | jq -r .Value)
done
Expand Down

0 comments on commit 2ed37eb

Please sign in to comment.