blob: d8aa6cf3535a961eaf650dac770fe62d2da574d4 [file] [log] [blame]
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}"
}