Share via

event grid topic subscriptions stuck in Deleting state

Brian Dunnington 6 Reputation points Microsoft Employee Admin
2026-01-10T19:05:32.22+00:00

i am a Microsoft employee working on the Microsoft Learn website. yesterday afternoon, we tried to do a regular deployment using EV2 and ARM. when our ARM templates tried to update our existing Event Grid Topic Subscriptions, they timed out and the resources were stuck in a ProvisioningState of 'Updating'. they stayed that way overnight and additional attempts to deploy via ARM resulted in Conflict errors saying '409 unable to update while resource is provisioning'. finally in desparation, i tried deleting the entire Event Grid System Topic via the portal. the portal indicated success and the resource was no longer visible. so i then tried to create a new Event Grid System Topic with the same name, but it appears to simply have resurrected the same stuck instance - the Event Grid Topic Subscription was already there (even though i just recreated the parent resource) and now stuck in a Deleting state. we are now unable to (fully) delete the resource nor update it, so we cannot proceed with our deployment.

feel free to reach out to me directly on Teams if you prefer

Azure Event Grid
Azure Event Grid

An Azure event routing service designed for high availability, consistent performance, and dynamic scale.

{count} votes

Answer recommended by moderator
  1. Brian Dunnington 6 Reputation points Microsoft Employee Admin
    2026-01-12T19:25:29.2966667+00:00

    The Azure Event Grid team fixed this - I dont know what they did, but I confirmed that my 'Deleting' subscriptions were actually removed and then I was able to recreate them properly without issue.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Q&A Assist
    2026-01-10T19:05:40.96+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    It seems you are experiencing issues with Event Grid Topic Subscriptions being stuck in a Deleting state after a failed update attempt. Here are some steps you can consider to troubleshoot and resolve the issue:

    1. Wait for Provisioning State: Sometimes, resources can take longer than expected to update or delete. If the resource is still in a provisioning state, give it some more time before trying to take further action.
    2. Check for Dependencies: Ensure that there are no dependencies or other resources that might be preventing the deletion of the Event Grid Topic Subscription. Sometimes, linked resources can cause conflicts.
    3. Use Azure CLI or PowerShell: If the portal is not reflecting the changes accurately, try using Azure CLI or PowerShell commands to force delete the subscription. You can use the following commands:
      • Azure CLI:
             az eventgrid event-subscription delete --name <event-subscription-name> --source-resource-id "/subscriptions/<sub-id>/resourceGroups/<my-resource-group>/providers/Microsoft.EventGrid/domains/<my-domain-name>/topics/<my-topic>"
        
      • PowerShell:
             Remove-AzEventGridSubscription -ResourceId "/subscriptions/<sub-id>/resourceGroups/<my-resource-group>/providers/Microsoft.EventGrid/domains/<my-domain-name>/topics/<my-topic>" -EventSubscriptionName <event-subscription-name>
        
    4. Check Azure Status Dashboard: Sometimes, issues can be related to Azure service outages. Check the Azure status dashboard to see if there are any ongoing issues with Event Grid in your region.
    5. Contact Support: If the issue persists, consider reaching out to Microsoft support for assistance, especially since you are a Microsoft employee. They may have additional tools and insights to help resolve the stuck resources.

    These steps should help you troubleshoot the issue with the Event Grid Topic Subscriptions stuck in a Deleting state.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.