8ff9b566f1
This make the config cleaner, and allows Vault to actually be accessible through a load balancer.
15 lines
297 B
HCL
15 lines
297 B
HCL
ui = true
|
|
|
|
backend "consul" {
|
|
path = "vault/"
|
|
address = "IP_ADDRESS:8500"
|
|
cluster_addr = "https://IP_ADDRESS:8201"
|
|
redirect_addr = "http://IP_ADDRESS:8200"
|
|
}
|
|
|
|
listener "tcp" {
|
|
address = "0.0.0.0:8200"
|
|
cluster_address = "IP_ADDRESS:8201"
|
|
tls_disable = 1
|
|
}
|