mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 19:22:46 -06:00
7 lines
115 B
HCL
7 lines
115 B
HCL
variable "module_version" { default = "v1.0" }
|
|
|
|
module "foo" {
|
|
source = "./ff"
|
|
version = var.module_version
|
|
}
|