github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/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 }