opentofu/terraform/test-fixtures/apply-module-var-resource-count/main.tf
2015-02-20 10:02:52 -08:00

7 lines
90 B
HCL

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