mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
10 lines
190 B
Terraform
10 lines
190 B
Terraform
|
|
// The calling test must set this variable for any command that
|
||
|
|
// will load this configuration.
|
||
|
|
variable "module_source" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
module "test" {
|
||
|
|
source = var.module_source
|
||
|
|
}
|