github.com/jmbataller/terraform@v0.6.8-0.20151125192640-b7a12e3a580c/terraform/test-fixtures/apply-taint-dep/main.tf (about)

     1  resource "aws_instance" "foo" {
     2      id = "foo"
     3      num = "2"
     4  }
     5  
     6  resource "aws_instance" "bar" {
     7      id = "bar"
     8      num = "2"
     9      foo = "${aws_instance.foo.id}"
    10  }