Export AWS SSM Parameter Store as Environment Variables with Bash
1. Add parameters to AWS System Manager
aws ssm put-parameter --name "/my-app/my-param-name" --value "my-param-value" --type "String"
Replace "/my-app/my-param-name" with the desired path and name for the parameter. Note that the path must begin wit...
blog.diegocornejo.com3 min read