summaryrefslogtreecommitdiffstats
path: root/bin-security/vault-bin/files/vault.hcl
blob: 20227b8486f11553a38549cd427345f0a0810069 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
api_addr          = "http://127.0.0.1:8200"
cluster_addr      = "http://127.0.0.1:8201"
#cluster_name      = "vault"
disable_mlock     = "true"
log_level         = "Info"
plugin_directory  = "/var/lib/vault/plugins/"
ui                = "true"

listener "tcp" {
  address         = "127.0.0.1:8200"
  cluster_address = "127.0.0.1:8201"
  tls_disable     = "true"
}

storage "raft" {
  path            = "/var/lib/vault/storage/"
  #node_id         = "hostname"
}