I'm sorry to hear that you're having trouble deleting the Astro organization resource in your Azure portal. Since Astronomer's support team has already deleted it on their end, it's possible that there might be some issue with the Azure portal.
To troubleshoot this issue, I would suggest you try deleting the resource again after some time. Sometimes, it takes a while for the Azure portal to reflect the changes made by the support team.
If you still face the same issue, you can try deleting the resource using Azure CLI or Azure PowerShell. Here are the steps to delete the resource using Azure CLI:
Open the Azure CLI and log in to your Azure account.
Run the following command to list all the resources in your subscription:
az resource list
Find the resource you want to delete and copy its resource ID.
Run the following command to delete the resource:
az resource delete --ids <resource-id>
Replace <resource-id>
with the resource ID you copied in step 3.
If you prefer to use Azure PowerShell, you can follow these steps:
Open Azure PowerShell and log in to your Azure account.
Run the following command to list all the resources in your subscription:
Get-AzResource
Find the resource you want to delete and copy its resource ID.
Run the following command to delete the resource:
Remove-AzResource -ResourceId <resource-id>
Replace <resource-id>
with the resource ID you copied in step 3.
I hope this helps you delete the Astro organization resource from your Azure portal. Let me know if you have any further questions.