mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-10 09:21:58 -04:00
17 lines
224 B
HCL
17 lines
224 B
HCL
terraform {
|
|
cloud {
|
|
organization = "hashicorp"
|
|
workspaces {
|
|
name = "test"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "module_name" {
|
|
type = string
|
|
const = true
|
|
}
|
|
|
|
module "child" {
|
|
source = "./modules/${var.module_name}"
|
|
}
|