github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/terraform/test-fixtures/apply-taint-dep-requires-new/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 foo = "${aws_instance.foo.id}" 9 require_new = "yes" 10 }