- 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)
12 lines
325 B
HCL
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.
|