summarylogtreecommitdiffstats
path: root/vault.hcl
blob: a612cf10cc7157257421fdb76b4b6124e7d7c1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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
}