mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-20 14:00:30 -05:00
11 lines
190 B
HCL
11 lines
190 B
HCL
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}"
|
|
}
|