yaml-vault is a small utility to import data from a YAML file to Vault or export keys from Vault into a YAML file
|
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
|
||
|---|---|---|
| .github/workflows | ||
| ci | ||
| .gitignore | ||
| .golangci.yml | ||
| go.mod | ||
| go.sum | ||
| History.md | ||
| LICENSE | ||
| main.go | ||
| Makefile | ||
| README.md | ||
| renovate.json | ||
Luzifer / yaml-vault
yaml-vault is a small utility to import data from a YAML file to Vault or export keys from Vault into a YAML file.
Usage
# cat vault.yaml
keys:
- key: secret/integration/test
values:
bar: foo
foo: bar
# yaml-vault --import -f vault.yaml
# vault read secret/integration/test
Key Value
--- -----
refresh_interval 2592000
bar foo
foo bar