blob: e9c459721f539554c99a51c0f850e308ae70e86c [file] [log] [blame]
module "a" {
source = "./child"
in = "${aws_instance.b.id}"
}
resource "aws_instance" "b" {}
resource "aws_instance" "c" {
some_input = "${module.a.out}"
depends_on = ["aws_instance.b"]
}