-
Notifications
You must be signed in to change notification settings - Fork 494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to store secrets outside of .dotfiles? #51
Comments
Hey there,
The Ansible way is, by far, my favorite solution so far. It's an amazing tool you will probably find useful one way or another, and is, in my opinion, worth looking into. |
I've been using LastPass for that since they now have a CLI tool. export SAAS_SECRET=`lpass show sass_seceret --password` |
Used @gMagicScott suggestion and it worked perfectly as I required tokens in some commands. Example: curl -F file=@'foo.txt' -F uuid=$(lpass show --notes uuid_token) http://myhost.com |
Maybe I am missing the obvious. but where do I store secret keys for AWS, Heroku, etc and still have them loaded via dotfiles?
What would be my prefered way of doing that?
The text was updated successfully, but these errors were encountered: