feat(deploy): iac/ Vault provisioning + workflow (uses app_roles module from tools)

This commit is contained in:
2026-05-06 13:20:14 +02:00
parent 3be6a2b7ef
commit 8a40d25675
4 changed files with 92 additions and 0 deletions

10
iac/main.tf Normal file
View File

@@ -0,0 +1,10 @@
locals {
app = {
name = "dance-lessons-coach"
}
}
module "app_roles" {
source = "git::ssh://git@192.168.1.202:2222/arcodange-org/tools.git//hashicorp-vault/iac/modules/app_roles?depth=1&ref=main"
name = local.app.name
}