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

8 lines
104 B
HCL

resource "null_resource" "noop" {}
module "test" {
source = "./inner"
im_a_string = "hello"
}