This repository was archived by the owner on Mar 3, 2023. It is now read-only.
Use password stored in an environmental variable#5
Open
ahadik wants to merge 2 commits intojed:masterfrom
Open
Use password stored in an environmental variable#5ahadik wants to merge 2 commits intojed:masterfrom
ahadik wants to merge 2 commits intojed:masterfrom
Conversation
added 2 commits
May 21, 2016 14:06
…he --PW flag to encrypt and decrypt using the value of the supplied environmental variable key.
…y environmental variable and exits normally for manual password entry
|
awesome, please merge this ;) |
|
FYI, I just submitted a similar PR #8 that adds support for passing the password as a command line argument (I did it before noticing this existing PR). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I've had a difficult time integrating this module into some continuous delivery pipelines like PM2 because for some reason (I really don't know why) piping a password using echo (
echo 'my_pass' | npm run encrypt) doesn't work in the isolated environments set up to build and deploy code.To get around this, I've added support for a single flag
--PWto which you pass the name of an environmental variable set to a desired password.Example use in
package.json:encrypt: encrypt config.json config.json.cast5 --PW=ENV_VARThis by-passes manual password entry from stdin and instead uses the value found at the --PW environmental variable, if it exits. If the environmental variable is not set, the command exits with exit status 1.