Load credstash secrets into environment variables.
npm install envcredstashLoad credstash secrets into environment variables.
This project is inspired by envconsul.
```
sudo npm i -g envcredstash
Start by storing some secrets with credstash as follows:
``
credstash put application/DB_PASSWORD my-db-password
credstash put application/MAIL_PASSWORD my-mail-password
Then you can run your application as follows:
``
envcredstash --prefix application/ -- myapplication
Example:
`
envcredstash --prefix application/ -- python -c "import os; print os.environ['MAIL_PASSWORD']"
my-mail-password
`
Running env:
``
envcredstash --prefix application/ -- env
DB_PASSWORD=my-db-password
MAIL_PASSWORD=my-mail-password
You can also print the variables with the export clause, this is useful to source:
`
source <(envcredstash --prefix application/ --export)
python -c "import os; print os.environ['MAIL_PASSWORD']"
my-mail-password
`
``
envcredstash --help
Options:
--table The credstash table. [default: "credential-store"]
--prefix The credstash prefix for keys. [array] [default: [""]]
--region The credstash region.
--export Export variables syntax. [boolean]
--list Export variables syntax. [boolean]
--help Show help [boolean]
`
const envcredstash = require('envcredstash');
envcredstash.get({
prefixes: ['application/'],
// table:
// region:
}, (err, envs) => {
console.dir(envs);
//{
// DB_PASSWORD: "my-db-password"
// MAIL_PASSWORD: "my-mail-password"
//}
});
``
MIT 2017 - José F. Romaniello