Initial code commit

This commit is contained in:
Alan Bridgeman 2025-05-07 06:30:09 -05:00
parent cf72c0fd43
commit 75d003a3be
12 changed files with 1203 additions and 0 deletions

25
vault-config.hcl Normal file
View file

@ -0,0 +1,25 @@
# 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"