mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-24 11:24:16 -04:00
11 lines
159 B
Terraform
11 lines
159 B
Terraform
|
|
variable "module_name" {
|
||
|
|
type = string
|
||
|
|
const = true
|
||
|
|
}
|
||
|
|
|
||
|
|
module "example" {
|
||
|
|
source = "./modules/${var.module_name}"
|
||
|
|
count = 2
|
||
|
|
number = count.index
|
||
|
|
}
|