1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2024-10-18 06:44:25 +00:00
yaml-vault/README.md
Knut Ahlers 5ae68c408c
Fix copyright, add new copyright, change README
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-04-24 13:43:52 +02:00

29 lines
815 B
Markdown

[![Go Report Card](https://goreportcard.com/badge/github.com/Luzifer/yaml-vault)](https://goreportcard.com/report/github.com/Luzifer/yaml-vault)
![](https://badges.fyi/github/license/Luzifer/yaml-vault)
![](https://badges.fyi/github/downloads/Luzifer/yaml-vault)
![](https://badges.fyi/github/latest-release/Luzifer/yaml-vault)
# 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
```bash
# 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
```