add vault bootstrap for services and vault deploy app

This commit is contained in:
Ruslan Bakiev
2026-03-08 19:37:02 +07:00
parent e4870ce669
commit f1cf90adc7
15 changed files with 373 additions and 6 deletions

16
vault/config/vault.hcl Normal file
View File

@@ -0,0 +1,16 @@
ui = true
disable_mlock = true
storage "raft" {
path = "/vault/data"
node_id = "vault-1"
}
listener "tcp" {
address = "0.0.0.0:8200"
cluster_address = "0.0.0.0:8201"
tls_disable = 1
}
cluster_addr = "http://127.0.0.1:8201"
api_addr = "http://0.0.0.0:8200"