mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 02:15:43 +03:00
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
|
|
}
|