18 lines
365 B
HCL
18 lines
365 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
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
|
|
}
|