Skip to content

Commit

Permalink
Add filter to retrieve only backend parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
blacksam07 committed Nov 27, 2024
1 parent d883c83 commit e925445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Download Parameter Store Values
id: ssm-download
run: |
PARAMETERS_JSON=$(aws ssm describe-parameters --query "Parameters[*].{Name:Name,ARN:ARN}" --output json | jq -c '.')
PARAMETERS_JSON=$(aws ssm describe-parameters --query "Parameters[?contains(Name, 'backend')].{Name:Name,ARN:ARN}" --output json | jq -c '.')
echo "parameters=${PARAMETERS_JSON}" >> $GITHUB_OUTPUT
- name: Format SSM Parameters
Expand Down

0 comments on commit e925445

Please sign in to comment.