terraform/internal/command/testdata/modules-unreferenced-entries/main.tf
2024-10-28 13:31:09 -04:00

11 lines
No EOL
119 B
HCL

locals {
foo = 3
}
module "child" {
source = "./child"
}
module "count_child" {
count = 1
source = "./child"
}