Files
opentf/terraform/testdata/plan-module-input/main.tf
2019-06-30 10:16:15 +02:00

9 lines
108 B
HCL

module "child" {
input = "42"
source = "./child"
}
resource "aws_instance" "bar" {
foo = "2"
}