github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/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 }