github.com/hugorut/terraform@v1.1.3/src/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 }