github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/terraform/testdata/apply-targeted-module-unrelated-outputs/child2/main.tf (about) 1 resource "aws_instance" "foo" { 2 } 3 4 output "instance_id" { 5 # Even though we're targeting just the resource above, this should still 6 # be populated because outputs are implicitly targeted when their 7 # dependencies are 8 value = "${aws_instance.foo.id}" 9 }