New feature 🎉 - Useful Secret Utilities
This release introduces a new command group called secret
.
whispr secret sub_command [OPTIONS]
With two new sub_commands:
get
: Audit a secret from a vault. This is very helpful in fetching raw secret that isjq
parseable.
Usage:
whispr secret get -v aws -s my_secret -r us-west-2
gen-random
: Generate a crypto-safe random sequence to use for key rotations.
Usage:
whispr secret gen-random -l 16 -e '*^/'
See README.md for more details on usage or run whispr secret --help
after installing the tool.
What's Changed
- feat/23: add secret command group with get & gen-random sub-commands by @narenaryan in #25
Full Changelog: v0.5.0...v0.6.0