-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve CD workflow #888
Improve CD workflow #888
Conversation
…ters and evenly pass to the definition task
- name: Download Parameter Store Values | ||
id: ssm-download | ||
run: | | ||
PARAMETERS_JSON=$(aws ssm describe-parameters --query "Parameters[?contains(Name, 'backend')].{Name:Name,ARN:ARN}" --output json | jq -c '.') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoulds we use contains
or maybe only check if it starts with that key? Just thinking that maybe some other keys are named backend and we end up pulling them as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I use contains
because the name convention that Devops use is project_name/(backend|frontend)/var_name
and I think is a good way to search, which scenery do you think could be retrieve keys that I don't want
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏
Board:
Description:
backend
defined parameters in AWS Parameter Store, format them, and pass them to the definition task.Notes:
Tasks:
Risk:
Preview: