terraform/internal/command/testdata/dynamic-module-sources/module-with-count/main.tf
2026-03-04 11:45:59 +01:00

10 lines
159 B
HCL

variable "module_name" {
type = string
const = true
}
module "example" {
source = "./modules/${var.module_name}"
count = 2
number = count.index
}