terraform/internal/command/testdata/modules-nested-dependencies/main.tf
2024-11-21 12:54:29 -05:00

7 lines
89 B
HCL

module "test" {
source = "./mods/test"
}
module "other" {
source = "./mods/other"
}