opentofu/terraform/test-fixtures/apply-good-create-before/main.tf
2014-09-29 15:20:04 -07:00

7 lines
117 B
HCL

resource "aws_instance" "bar" {
require_new = "xyz"
lifecycle {
create_before_destroy = true
}
}