Files
templates/blueprints/vault/template.toml
Harikrishnan Dhanasekaran 186528df56 Feat : Add HashiCorp Vault template (#512)
* feat: add HashiCorp Vault template

* Update blueprints/vault/docker-compose.yml

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-11-07 23:29:04 -06:00

18 lines
274 B
TOML

[variables]
main_domain = "${domain}"
root_token = "${password:32}"
[config]
[[config.domains]]
serviceName = "vault"
port = 8200
host = "${main_domain}"
[config.env]
VAULT_DEV_ROOT_TOKEN_ID = "${root_token}"
VAULT_DEV_LISTEN_ADDRESS = "0.0.0.0:8200"
[[config.mounts]]