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

7 lines
117 B
HCL

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