opentofu/terraform/test-fixtures/plan-list-order/main.tf
James Bardin 61982be9c6 failing test with wrong interpolated list order
The plan diffs for aws_instance.a and aws_instance.b should be
identical.
2016-12-15 13:23:50 -05:00

8 lines
146 B
HCL

resource "aws_instance" "a" {
foo = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 20]
}
resource "aws_instance" "b" {
foo = "${aws_instance.a.foo}"
}