custom-hashicorp-vault/vault-config.hcl
2025-05-07 06:30:09 -05:00

25 lines
No EOL
423 B
HCL

# Storage backend
#storage "file" {
# path = "/vault/data"
#}
ui = true
# HTTP listener with TLS
listener "tcp" {
address = "0.0.0.0:8200"
tls_disable = 1
}
# Disabled Memory Lock
disable_mlock = true
# API Address
api_addr = "http://localhost:8200"
storage "raft" {
path = "/vault/data"
}
# Cluster address (optional, can be same as api_addr if not using clustering)
cluster_addr = "http://localhost:8201"