After you import the cluster the plan always contains a change for alternator_write_isolation which forces Terraform to delete the cluster. The temporary workaround is:
lifecycle {
prevent_destroy = true
ignore_changes = [
alternator_write_isolation
]
}
Is there any chance that this field can be imported too, so that we don't see in the diff and don't need to ignore?