2020-01-27 14:12:54 +01:00
|
|
|
# secrethub
|
|
|
|
|
2024-02-14 17:25:13 -03:00
|
|
|
> Keep secrets out of config files.
|
2024-05-23 18:13:29 +02:00
|
|
|
> More information: <https://github.com/secrethub/secrethub-cli>.
|
2020-01-27 14:12:54 +01:00
|
|
|
|
2022-12-04 08:53:34 +01:00
|
|
|
- Print a secret to `stdout`:
|
2020-01-27 14:12:54 +01:00
|
|
|
|
|
|
|
`secrethub read {{path/to/secret}}`
|
|
|
|
|
2020-02-11 01:24:00 +01:00
|
|
|
- Generate a random value and store it as a new or updated secret:
|
2020-01-27 14:12:54 +01:00
|
|
|
|
|
|
|
`secrethub generate {{path/to/secret}}`
|
|
|
|
|
2020-02-11 01:24:00 +01:00
|
|
|
- Store a value from the clipboard as a new or updated secret:
|
2020-01-27 14:12:54 +01:00
|
|
|
|
|
|
|
`secrethub write --clip {{path/to/secret}}`
|
|
|
|
|
2022-12-04 08:53:34 +01:00
|
|
|
- Store a value supplied on `stdin` as a new or updated secret:
|
2020-01-27 14:12:54 +01:00
|
|
|
|
|
|
|
`echo "{{secret_value}}" | secrethub write {{path/to/secret}}`
|
|
|
|
|
|
|
|
- Audit a repository or secret:
|
|
|
|
|
|
|
|
`secrethub audit {{path/to/repo_or_secret}}`
|