1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2024-10-18 06:44:25 +00:00
yaml-vault is a small utility to import data from a YAML file to Vault or export keys from Vault into a YAML file
Find a file
2018-04-24 13:46:43 +02:00
Godeps add vendored dependencies 2016-07-11 16:57:04 +02:00
vendor add vendored dependencies 2016-07-11 16:57:04 +02:00
.gitignore fix bug when reading path and key with same name 2016-07-11 17:43:43 +02:00
.repo-runner.yaml Switch build system 2018-04-24 13:43:38 +02:00
.travis.yml Add Github releases publisher 2016-10-13 12:53:46 +02:00
History.md prepare release v1.2.0 2018-04-24 13:46:43 +02:00
LICENSE Fix copyright, add new copyright, change README 2018-04-24 13:43:52 +02:00
main.go Add state "absent" to delete keys 2016-10-05 13:22:31 +02:00
Makefile Switch build system 2018-04-24 13:43:38 +02:00
README.md Fix copyright, add new copyright, change README 2018-04-24 13:43:52 +02:00

Go Report Card

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