An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

![License: Apache v2.0](https://badges.fyi/github/license/Jimdo/yaml-vault)

# 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

```