github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/terraform/testdata/apply-module-replace-cycle-cbd/mod1/main.tf (about) 1 resource "aws_instance" "a" { 2 require_new = "new" 3 lifecycle { 4 create_before_destroy = true 5 } 6 } 7 8 output "ids" { 9 value = [aws_instance.a.id] 10 }