Merge pull request #174 from cloud-neutral-toolkit/codex/fix-bootstrap.yaml-file-not-found-error

Fix bootstrap config path
This commit is contained in:
cloudneutral 2025-12-10 17:06:59 +08:00 committed by GitHub
commit a2fe535e42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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