github.com/pmcatominey/terraform@v0.7.0-rc2.0.20160708105029-1401a52a5cc5/terraform/test-fixtures/refresh-targeted/main.tf (about)

     1  resource "aws_vpc" "metoo" {}
     2  resource "aws_instance" "notme" { }
     3  resource "aws_instance" "me" {
     4    vpc_id = "${aws_vpc.metoo.id}"
     5  }
     6  resource "aws_elb" "meneither" {
     7    instances = ["${aws_instance.me.*.id}"]
     8  }