opentofu/terraform/test-fixtures/plan-computed/main.tf
Mitchell Hashimoto d28e5a1638 dos2unix
2014-07-28 10:43:00 -07:00

9 lines
139 B
HCL

resource "aws_instance" "foo" {
num = "2"
compute = "foo"
}
resource "aws_instance" "bar" {
foo = "${aws_instance.foo.foo}"
}