Files
opentf/terraform/testdata/apply-multi-ref/main.tf
2019-06-30 10:16:15 +02:00

9 lines
161 B
HCL

resource "aws_instance" "create" {
bar = "abc"
}
resource "aws_instance" "other" {
var = "${aws_instance.create.id}"
foo = "${aws_instance.create.bar}"
}