github.com/acm1/terraform@v0.6.2-0.20150729164239-1f314444f45c/terraform/test-fixtures/graph-count/main.tf (about)

     1  resource "aws_instance" "web" {
     2      count = 3
     3  }
     4  
     5  resource "aws_load_balancer" "weblb" {
     6      members = "${aws_instance.web.*.id}"
     7  }