github.com/spirius/terraform@v0.10.0-beta2.0.20170714185654-87b2c0cf8fea/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 }