mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 08:26:26 -06:00
fc4ac52014
Variables weren't being interpolated during the Input phase, causing a syntax error on the interpolation string. Adding `walkInput` to the EvalTree operations prevents skipping the interpolation step.
8 lines
116 B
HCL
8 lines
116 B
HCL
module "source" {
|
|
source = "./source"
|
|
}
|
|
module "child" {
|
|
source = "./child"
|
|
list = "${module.source.list}"
|
|
}
|