Fix bootstrap config path resolution

This commit is contained in:
cloudneutral 2025-12-11 00:10:58 +08:00
parent 778b0f6712
commit af6e9d9b7a

View File

@ -2,5 +2,5 @@ terraform_version_constraint = ">= 1.2.0"
terragrunt_version_constraint = ">= 0.67.14"
locals {
bootstrap_config = yamldecode(file(abspath("${get_parent_terragrunt_dir()}/config/accounts/bootstrap.yaml")))
bootstrap_config = yamldecode(file(abspath("${get_terragrunt_dir()}/../config/accounts/bootstrap.yaml")))
}