opentofu/terraform/test-fixtures/input-interpolate-var/main.tf
James Bardin fc4ac52014 Module variables not being interpolated
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.
2016-05-23 13:44:09 -04:00

8 lines
116 B
HCL

module "source" {
source = "./source"
}
module "child" {
source = "./child"
list = "${module.source.list}"
}