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

15 lines
175 B
HCL

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