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
Knut Ahlers 997b8674e9
Replace CI system
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2024-04-07 14:36:14 +02:00
.github/workflows Replace CI system 2024-04-07 14:36:14 +02:00
ci Replace CI system 2024-04-07 14:36:14 +02:00
.gitignore fix bug when reading path and key with same name 2016-07-11 17:43:43 +02:00
.golangci.yml Modernize code, update depdendencies 2024-04-07 14:34:19 +02:00
go.mod Modernize code, update depdendencies 2024-04-07 14:34:19 +02:00
go.sum Modernize code, update depdendencies 2024-04-07 14:34:19 +02:00
History.md prepare release v1.3.2 2021-09-29 13:37:19 +02:00
LICENSE Fix copyright, add new copyright, change README 2018-04-24 13:43:52 +02:00
main.go Modernize code, update depdendencies 2024-04-07 14:34:19 +02:00
Makefile Replace CI system 2024-04-07 14:36:14 +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