terraform/internal/command/testdata/modules-nested-dependencies/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
89 B
Terraform
Raw Permalink Normal View History

2024-11-18 16:21:03 -05:00
module "test" {
source = "./mods/test"
}
module "other" {
source = "./mods/other"
}