terraform/internal/command/testdata/dynamic-module-sources/command-with-const-var-cloud-backend/main.tf
2026-03-30 20:51:48 +02:00

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}"
}