opentofu/terraform/test-fixtures/input-module-data-vars/child/main.tf
James Bardin 1664d4e228 test with bad interpolation during Input
The interpolation going into a module variable here will be valid after
Refresh, but Refresh doesn't happen for the Input phase.
2017-08-10 14:14:29 -04:00

6 lines
56 B
HCL

variable "in" {}
output "out" {
value = "${var.in}"
}