fort-knox
v0.1.6
Published
Get secrets from Vault.
Downloads
10
Readme
Fort Knox
Get secrets from Vault.
const FortKnox = require('fort-knox');
const vault = new FortKnox({
auth: {
data: {
role_id: '...',
secret_id: '...'
},
method: 'approle'
},
url: '...'
});
vault.get('secret/my/database/password').then(value => console.log(value));