mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06:00
7 lines
90 B
HCL
7 lines
90 B
HCL
variable "count" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
count = "${var.count}"
|
|
}
|