infra/stacks/platform/terragrunt.hcl
Viktor Barzin 98d7c2a4a5 fix: resolve HCL semicolons and vault-platform dependency cycle
- Replace semicolons with newlines in vault/main.tf variable blocks
  (HCL does not support semicolons)
- Remove dependency "vault" from platform/terragrunt.hcl to break
  cycle (vault already depends on platform)
2026-03-14 17:37:25 +00:00

12 lines
325 B
HCL

# stacks/platform/terragrunt.hcl
include "root" {
path = find_in_parent_folders()
}
dependency "infra" {
config_path = "../infra"
skip_outputs = true
}
# NOTE: platform cannot depend on vault (vault depends on platform → cycle).
# Vault KV must be populated before platform apply. Use: vault first, then platform.