opentofu/terraform/test-fixtures/input-interpolate-var/child/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

6 lines
124 B
HCL

variable "list" { }
resource "template_file" "temp" {
count = "${length(split(",", var.list))}"
template = "foo"
}