mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
44 lines
904 B
HCL
44 lines
904 B
HCL
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
disable_cache = true
|
|
disable_mlock = true
|
|
|
|
ui = true
|
|
|
|
listener "tcp" {
|
|
address = "127.0.0.1:1029"
|
|
tls_disable = true
|
|
}
|
|
|
|
backend "consul" {
|
|
foo = "bar"
|
|
advertise_addr = "foo"
|
|
address = "127.0.0.1:8500"
|
|
}
|
|
|
|
ha_backend "consul" {
|
|
bar = "baz"
|
|
advertise_addr = "snafu"
|
|
disable_clustering = "true"
|
|
address = "127.0.0.1:8500"
|
|
}
|
|
|
|
service_registration "consul" {
|
|
address = "https://consulserverIP:8500"
|
|
foo = "bar"
|
|
tls_cert_file = "./../vault/diagnose/test-fixtures/expiredcert.pem"
|
|
tls_key_file = "./../vault/diagnose/test-fixtures/expiredprivatekey.pem"
|
|
}
|
|
|
|
sentinel {
|
|
additional_enabled_modules = []
|
|
}
|
|
|
|
max_lease_ttl = "10h"
|
|
default_lease_ttl = "10h"
|
|
cluster_name = "testcluster"
|
|
pid_file = "./pidfile"
|
|
raw_storage_endpoint = true
|
|
disable_sealwrap = true
|
|
disable_printable_check = true
|