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

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

6 lines
111 B
Terraform
Raw Permalink Normal View History

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