https://github.com/jimdo/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
https://github.com/jimdo/yaml-vault
owner-team-wonderland
Last synced: about 1 year ago
JSON representation
yaml-vault is a small utility to import data from a YAML file to Vault or export keys from Vault into a YAML file
- Host: GitHub
- URL: https://github.com/jimdo/yaml-vault
- Owner: Jimdo
- License: apache-2.0
- Created: 2016-07-11T15:07:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-02-24T07:31:44.000Z (over 4 years ago)
- Last Synced: 2024-06-19T05:57:25.481Z (about 2 years ago)
- Topics: owner-team-wonderland
- Language: Go
- Homepage:
- Size: 1.77 MB
- Stars: 7
- Watchers: 10
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
- License: LICENSE
Awesome Lists containing this project
README

# Jimdo / 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
```