github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/terraform/test-fixtures/plan-list-order/main.tf (about)

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