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