1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 20:25:28 +03:00
aports/testing/vault/vault.hcl
Christian Kampka 5061eaa716 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.
2015-09-21 08:54:21 +00:00

15 lines
259 B
HCL

/*
* 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
}