opentofu/terraform/testdata/apply-targeted-module-unrelated-outputs/child2/main.tf
2019-06-30 10:16:15 +02:00

10 lines
259 B
HCL

resource "aws_instance" "foo" {
}
output "instance_id" {
# Even though we're targeting just the resource above, this should still
# be populated because outputs are implicitly targeted when their
# dependencies are
value = "${aws_instance.foo.id}"
}