opentofu/terraform/testdata/apply-multi-depose-create-before-destroy/main.tf
2019-06-30 10:16:15 +02:00

9 lines
233 B
HCL

resource "aws_instance" "web" {
// require_new is a special attribute recognized by testDiffFn that forces
// a new resource on every apply
require_new = "yes"
lifecycle {
create_before_destroy = true
}
}