Reputation: 1539
I'm trying to delete two custom domains from my Azure Static Web App. I'm getting notifications saying that the custom domains have been deleted. But they still are stuck in the list view as Deleting. Tried to delete several times but still they refuse to be removed from the list.
Does anyone know the reason behind this?
Upvotes: 2
Views: 1277
Reputation: 7297
As per Get-AzStaticWebAppCustomDomain and Remove-AzStaticWebAppCustomDomain documents ,
To Get the list of Custom Domains of the Static Web App run below Command
Get-AzStaticWebAppCustomDomain -ResourceGroupName YourRGName -Name StaticWebAppName
Remove-AzStaticWebAppCustomDomain -ResourceGroupName YourRGName -Name StaticWebAppName -DomainName YourdomainName
Get-AzStaticWebAppCustomDomain
I am not able to see the deleted custom domain.
Upvotes: 5