Skip to content

Whispr introduces a new `secret` command group with useful utilities

Latest
Compare
Choose a tag to compare
@narenaryan narenaryan released this 15 Jan 04:39
d487dfd

New feature 🎉 - Useful Secret Utilities

This release introduces a new command group called secret.

whispr secret sub_command [OPTIONS]

With two new sub_commands:

  1. get: Audit a secret from a vault. This is very helpful in fetching raw secret that is jq parseable.

Usage:

whispr secret get -v aws -s my_secret -r us-west-2
  1. 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