mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
18 lines
366 B
HCL
18 lines
366 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|
|
}
|