-
Notifications
You must be signed in to change notification settings - Fork 32
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
Decrypt password for list operation #140
Comments
Hi! @egze, what kind of output format are you expecting? |
There are 2 things that would make it better:
what do you think? |
I just realised that I can achieve my feature with existing functionality. I haven't noticed that the But JSON output would still be nice. |
Made a PR for JSON support #142 |
Fixed the release process, thank you for the PR @egze ! |
Thanks. I wonder now how to update the package in https://github.com/Homebrew/homebrew-core/blob/master/Formula/e/enpass-cli.rb Where do these checksums come from 🤔
|
The homebrew bottles are nowadays automatically updated within 3 hours; % brew bump-formula-pr --dry-run --version=1.6.3 enpass-cli
==> Auto-updating Homebrew...
Adjust how often this is run with HOMEBREW_AUTO_UPDATE_SECS or disable with
HOMEBREW_NO_AUTO_UPDATE. Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
Error: Whoops, the enpass-cli formula has its version update
pull requests automatically opened by BrewTestBot every ~3 hours!
We'd still love your contributions, though, so try another one
that's not in the autobump list:
https://github.com/Homebrew/homebrew-core/blob/master/.github/autobump.txt |
Here it is: Homebrew/homebrew-core#196954 |
Currently the list returns the cards without the password. This makes the CLI unusable for certain scripting tasks.
Thing that I am working on is a adapter for Kamal, a tool for deploying web application.
The way the secret adapters in Kamal work - the function receives a list of secrets to fetch, (example
["database-password", "cookie", "whatever"]
, then the cli fetches the list of secrets for these items, and creates a map ofname => password
.So to create an adapter for Enpass, I would need to have the CLI list function to decrypt the cards and return also the password.
Reference implementation for LastPass: https://github.com/basecamp/kamal/blob/main/lib/kamal/secrets/adapters/last_pass.rb
The text was updated successfully, but these errors were encountered: