Unable to successfully delete group service accounts on gitlab.com
## Bug Report Our terraform pipelines are consistently timing out attempting to delete group service accounts. It appears that the queue for deleting accounts on gitlab.com can take hours if not days, which is infeasible in a terraform process. See https://gitlab.com/gitlab-org/gitlab/-/work_items/583853 for more details. ## Additional Details - GitLab Terraform Provider Version: `18.11` - GitLab Instance Version: `18.11` - Terraform Version: `1.15` - License Tier: `Ultimate` ## Implementation Guide - Follow the `CONTRIBUTING.md` guide for setting up your local development environment. - Clone the community fork of this project. - In `internal/provider/resource_gitlab_group_service_account.go`, add a new bool type attribute to the schema called `skip_wait_for_deletion`. In the description, make sure to include the recommendation that it be used for gitlab.com. - In the `Delete` function, check the value of `skip_wait_for_deletion`. If true, skip all the wait logic.
issue