opentofu/terraform/testdata/apply-good-create-before-update/main.tf

8 lines
110 B
Terraform
Raw Normal View History

resource "aws_instance" "bar" {
foo = "baz"
lifecycle {
create_before_destroy = true
}
}