diff options
author | Christian Kampka <christian@kampka.net> | 2015-09-19 12:37:45 +0200 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-09-21 08:54:21 +0000 |
commit | 5061eaa7164287ab2bf209ff9b3b3197551b0f6d (patch) | |
tree | bf651caec3773d758fcd9ce3da10ace1a3321fb5 /testing/vault/vault.hcl | |
parent | 2b2d458b50da34ebb2659bbdcaecac89f7945dd6 (diff) | |
download | aports-5061eaa7164287ab2bf209ff9b3b3197551b0f6d.tar.bz2 aports-5061eaa7164287ab2bf209ff9b3b3197551b0f6d.tar.xz |
testing/vault: new aport
https://www.vaultproject.io
Vault is a tool for securely accessing secrets. A secret is anything
that you want to tightly control access to, such as API keys, passwords,
certificates, and more. Vault provides a unified interface to any
secret, while providing tight access control and recording a detailed
audit log.
Diffstat (limited to 'testing/vault/vault.hcl')
-rw-r--r-- | testing/vault/vault.hcl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/vault/vault.hcl b/testing/vault/vault.hcl new file mode 100644 index 0000000000..b74da5ed80 --- /dev/null +++ b/testing/vault/vault.hcl @@ -0,0 +1,15 @@ +/* + * Vault configuration. See: https://vaultproject.io/docs/config/ + */ + +backend "file" { + path = "/var/lib/vault" +} + +listener "tcp" { + /* + * By default Vault listens on localhost only. + * Make sure to enable TLS support otherwise. + */ + tls_disable = 1 +} |