github.com/trawler/terraform@v0.10.8-0.20171106022149-4b1c7a1d9b48/terraform/test-fixtures/transform-targets-downstream/child/child.tf (about) 1 resource "aws_instance" "foo" { 2 } 3 4 module "grandchild" { 5 source = "./grandchild" 6 } 7 8 output "id" { 9 value = "${aws_instance.foo.id}" 10 } 11 12 output "grandchild_id" { 13 value = "${module.grandchild.id}" 14 }