mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 03:32:54 -06:00
7 lines
115 B
Terraform
7 lines
115 B
Terraform
|
variable "module_version" { default = "v1.0" }
|
||
|
|
||
|
module "foo" {
|
||
|
source = "./ff"
|
||
|
version = var.module_version
|
||
|
}
|