mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
10 lines
152 B
HCL
10 lines
152 B
HCL
variable "mod_count_root" {
|
|
type = "string"
|
|
default = "3"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
mod_count_child = "${var.mod_count_root}"
|
|
}
|