Files
opentf/terraform/testdata/transform-module-var-nested/child/main.tf
2019-06-30 10:16:15 +02:00

7 lines
91 B
HCL

variable "value" {}
module "child" {
source = "./child"
value = "${var.value}"
}