blob: 7c3fc842f34dbc0edc47f9f7878f1cdc1a8c9e40 [file] [log] [blame]
module "grandchild" {
source = "./grandchild"
}
resource "aws_instance" "bar" {
grandchildid = "${module.grandchild.id}"
}
output "id" { value = "${aws_instance.bar.id}" }
output "grandchild_id" { value = "${module.grandchild.id}" }