Skip to content

Commit

Permalink
Hide parameter overrides during build and deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Feb 5, 2024
1 parent d184f85 commit beb6a47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
--no-fail-on-empty-changeset \
--config-env $CONFIG_ENV \
--config-file ./samconfig.toml \
--parameter-overrides $(while IFS='=' read -r key value; do params+=" $key=$value"; done < ./$CONFIG_ENV.parameters && echo "$params HoneybadgerRevision=$HONEYBADGER_REVISION")
--parameter-overrides $(while IFS='=' read -r key value; do params+=" $key=$value"; done < ./$CONFIG_ENV.parameters && echo "$params HoneybadgerRevision=$HONEYBADGER_REVISION") \
| sed 's/\(Parameter overrides\s*\): .*/\1: ***** REDACTED *****/'
env:
HONEYBADGER_REVISION: ${{ github.sha }}
docs-changed:
Expand Down

0 comments on commit beb6a47

Please sign in to comment.