blob: 4fb97c7a7b9a4807bab08c60284e58682daf01ca [file] [log] [blame]
resource "aws_instance" "A" {}
resource "aws_instance" "B" {
A = "${aws_instance.A.id}"
}
resource "aws_instance" "C" {
A = "${aws_instance.A.id}"
B = "${aws_instance.B.id}"
}