github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/terraform/testdata/apply-destroy-tainted/main.tf (about) 1 resource "test_instance" "a" { 2 foo = "a" 3 } 4 5 resource "test_instance" "b" { 6 foo = "b" 7 lifecycle { 8 create_before_destroy = true 9 } 10 } 11 12 resource "test_instance" "c" { 13 foo = "c" 14 lifecycle { 15 create_before_destroy = true 16 } 17 }