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