2020-01-27 13:12:54 +00:00
|
|
|
# secrethub
|
|
|
|
|
|
|
|
> A tool to keep secrets out of config files.
|
|
|
|
> More information: <https://secrethub.io>.
|
|
|
|
|
|
|
|
- Print a secret to stdout:
|
|
|
|
|
|
|
|
`secrethub read {{path/to/secret}}`
|
|
|
|
|
2020-02-11 00:24:00 +00:00
|
|
|
- Generate a random value and store it as a new or updated secret:
|
2020-01-27 13:12:54 +00:00
|
|
|
|
|
|
|
`secrethub generate {{path/to/secret}}`
|
|
|
|
|
2020-02-11 00:24:00 +00:00
|
|
|
- Store a value from the clipboard as a new or updated secret:
|
2020-01-27 13:12:54 +00:00
|
|
|
|
|
|
|
`secrethub write --clip {{path/to/secret}}`
|
|
|
|
|
2020-02-11 00:24:00 +00:00
|
|
|
- Store a value supplied on stdin as a new or updated secret:
|
2020-01-27 13:12:54 +00:00
|
|
|
|
|
|
|
`echo "{{secret_value}}" | secrethub write {{path/to/secret}}`
|
|
|
|
|
|
|
|
- Audit a repository or secret:
|
|
|
|
|
|
|
|
`secrethub audit {{path/to/repo_or_secret}}`
|