blob: 6548b794930b5cd8a0712d222b478bcd9c8922f4 [file] [log] [blame]
resource "aws_instance" "foo" {
}
module "grandchild" {
source = "./grandchild"
}
output "id" {
value = "${aws_instance.foo.id}"
}
output "grandchild_id" {
value = "${module.grandchild.id}"
}