opentofu/terraform/test-fixtures/plan-list-order/main.tf

8 lines
146 B
Terraform
Raw Normal View History

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}"
}