Merge pull request #173 from cloud-neutral-toolkit/codex/fix-null-value-error-in-terragrunt.hcl
Fix Terragrunt bootstrap locals resolution
This commit is contained in:
commit
1c5d7bc920
@ -3,7 +3,8 @@ include "root" {
|
||||
}
|
||||
|
||||
locals {
|
||||
bootstrap_config = include.root.locals.bootstrap_config
|
||||
root_config = read_terragrunt_config(find_in_parent_folders())
|
||||
bootstrap_config = local.root_config.locals.bootstrap_config
|
||||
}
|
||||
|
||||
dependency "state" {
|
||||
|
||||
@ -3,7 +3,8 @@ include "root" {
|
||||
}
|
||||
|
||||
locals {
|
||||
bootstrap_config = include.root.locals.bootstrap_config
|
||||
root_config = read_terragrunt_config(find_in_parent_folders())
|
||||
bootstrap_config = local.root_config.locals.bootstrap_config
|
||||
}
|
||||
|
||||
dependency "state" {
|
||||
|
||||
@ -3,7 +3,8 @@ include "root" {
|
||||
}
|
||||
|
||||
locals {
|
||||
bootstrap_config = include.root.locals.bootstrap_config
|
||||
root_config = read_terragrunt_config(find_in_parent_folders())
|
||||
bootstrap_config = local.root_config.locals.bootstrap_config
|
||||
}
|
||||
|
||||
terraform {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user