vault-bin-arm/vault.hcl
Christian Rebischke 7b0e2094c6 added vault package
2017-12-03 00:43:53 +00:00

20 lines
415 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.
*
* Note that VAULT_ADDR=http://127.0.0.1:8200 must
* be set in the environment in order for the client
* to work because it uses HTTPS by default.
*/
tls_disable = 1
}