Terraform apply command destroys my newly imported resources

Hi @gibsster,

This seems like your resource still has count = 3 set, and so Terraform can see that there are more instances than the configuration calls for and plans to delete one to fix that. If so, you can change it to count = 4 to declare that you are expecting an instance index 3, and then Terraform should not plan to destroy it.