
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
decrypt-kms-env
Advanced tools
Simple util for decrypting secure environment variables encrypted using KMS
Simple util for decrypting secure environment variables encrypted using KMS.
Include decrypt-kms-env
in your project's package.json
.
Once installed, run your application in your Dockerfile prefixed:
RUN eval $(./node_modules/.bin/decrypt-kms-env) && npm start
Follows a simple convention whereby:
secure:
,decrypt-kms-env
is passed to eval
in a shell, values are decrypted in-place. Scrubbed debug output is provided so you can confirm env vars have been decrypted and set.> eval $(./node_modules/.bin/decrypt-kms-env)
Decrypted SecureValueA=************1231
Decrypted SecureValueB=************913X
If you don't have access to a shell to set env vars before starting your app, you can run decrypt-kms-env
via JS.
var dke = require('decrypt-kms-env');
dke(process.env, function(err, scrubbed) {
if (err) throw err;
// Values in process.env are now decrypted.
// To debug use `scrubbed` instead of logging `process.env` directly.
// console.log(scrubbed);
});
We use this from within Docker containers to decrypt env vars encrypted via KMS.
For projects using python
& awscli
rather than node, the v1.x
branch of this project can be used.
# Install
curl -sL https://github.com/mapbox/decrypt-kms-env/archive/v1.0.6.tar.gz | tar --gunzip --extract --strip-components=1 --exclude=readme.md --directory=/usr/local
# Run app
. decrypt-kms-env && npm start
FAQs
Simple util for decrypting secure environment variables encrypted using KMS
The npm package decrypt-kms-env receives a total of 130 weekly downloads. As such, decrypt-kms-env popularity was classified as not popular.
We found that decrypt-kms-env demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.