opentofu/configs/testdata/invalid-files/version-variable.tf
2019-06-30 10:16:15 +02:00

7 lines
115 B
HCL

variable "module_version" { default = "v1.0" }
module "foo" {
source = "./ff"
version = var.module_version
}