opentofu/terraform/testdata/apply-destroy-mod-var-and-count-nested/main.tf
2019-06-30 10:16:15 +02:00

10 lines
152 B
HCL

variable "mod_count_root" {
type = "string"
default = "3"
}
module "child" {
source = "./child"
mod_count_child = "${var.mod_count_root}"
}