Files
opentf/internal/tofu/testdata/transform-module-var-nested/child/main.tf
2023-09-20 15:16:53 +03:00

7 lines
91 B
HCL

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