Files
opentf/terraform/test-fixtures/plan-count-module-static/main.tf
2017-01-27 20:32:55 -08:00

7 lines
101 B
HCL

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