Terraform Destroy a targeting resource
terraform plan -destroy -target=”resource_type.resource name” -out=plan.tfplan <– look the option -destroy in the plan.
With this command you can create a file plan.tfplan with the plan of the resource to destroy.
then use apply with the plan file to destroy the resource selected, NEVER USE TERRAFORM DESTROY:
terraform apply plan.tfplan