How to delete alb that have been created from eks using terraform destroy

Hey, I’m creating an EKS cluster using Terraform, and part of it, is to create an ALB.
When I run terraform destroy it doesn’t work because the vpc is locked due to the ALB that needs to be deleted first. But, because it has been created from my ingress controller I don’t know how to make terraform recognize it…

I want to be able to run terraform destroy without the need to manually delete the alb first.

You will need to remove the ingress object first so that the ALB gets destroyed.

Terraform isn’t able to do anything as it doesn’t manage the ALB and therefore knows nothing about it.

Does Terraform manage the objects within Kubernetes (either directly or via something like Helm)?