0.0.1-alpha2 • Published 4 years ago
aws-ssm-dotenv v0.0.1-alpha2
aws-ssm-dotenv
Simple CLI utility for generating .env files from parameters stored onAWS SSM.
Installation
yarn add aws-ssm-dotenvUsage
Create a file called parameters.json
{
"VAR_ONE": "/var/${Env}/one",
"VAR_TWO": "/var/two"
}The object keys represent the name of the variable in the resulting .env file, the values represent the keys of the SSM parameter.
Basic interpolation is supported by using the ${VarName} syntax. The variables are substituted by value passed via --parameters Env=dev
aws-ssm-dotenv --parameters-file parameters.json --parameters Env=dev --output-file .env --region eu-central-1The resulting .env file looks like:
VAR_ONE=value-var-one
VAR_TWO=value-var-two0.0.1-alpha2
4 years ago
0.0.1-alpha1
4 years ago