mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
12 lines
169 B
HCL
12 lines
169 B
HCL
variable "module_name" {
|
|
type = string
|
|
const = true
|
|
}
|
|
|
|
locals {
|
|
module_path = "./modules/${var.module_name}"
|
|
}
|
|
|
|
module "example" {
|
|
source = local.module_path
|
|
}
|