github.com/vic3lord/terraform@v0.8.0-rc1.0.20170626102919-16c6dd2cb372/terraform/test-fixtures/apply-ignore-changes-dep/main.tf (about) 1 resource "aws_instance" "foo" { 2 count = 2 3 ami = "ami-bcd456" 4 lifecycle { 5 ignore_changes = ["ami"] 6 } 7 } 8 9 resource "aws_eip" "foo" { 10 count = 2 11 instance = "${element(aws_instance.foo.*.id, count.index)}" 12 }