terraform/internal/command/testdata/modules/main.tf

11 lines
119 B
HCL

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