opentofu/terraform/testdata/plan-count-module-static/main.tf
2019-06-30 10:16:15 +02:00

9 lines
100 B
HCL

variable "foo" {
default = "3"
}
module "child" {
source = "./child"
value = "${var.foo}"
}