terraform/internal/command/testdata/dynamic-module-sources/source-with-resource-reference/main.tf
2026-03-04 11:45:59 +01:00

5 lines
111 B
HCL

resource "test_instance" "example" {}
module "example" {
source = "./modules/${test_instance.example.id}"
}