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

8 lines
110 B
HCL

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