mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-21 06:08:16 -04:00
8 lines
107 B
Terraform
8 lines
107 B
Terraform
|
|
variable "module_name" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
module "example" {
|
||
|
|
source = "./modules/${var.module_name}"
|
||
|
|
}
|