opentofu/terraform/test-fixtures/apply-good-create-before/main.tf

7 lines
117 B
Terraform
Raw Normal View History

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