terraform/internal/command/testdata/dynamic-module-sources/source-with-module-output-reference/main.tf

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

8 lines
121 B
Terraform
Raw Permalink Normal View History

2026-02-27 10:43:11 -05:00
module "example" {
source = "./modules/example"
}
module "example2" {
source = "./modules/${module.example.name}"
}