Hello @SBP,
I understand you're trying to remove the Azure Front Door service that was added to your account. I totally understand how frustrating it can be to keep getting charged for a service you don’t need.
To remove Azure Front Door, you can use the Remove-AzFrontDoor cmdlet in PowerShell. Here’s a step-by-step guide on how to do this:
- Open PowerShell: Make sure you have the Azure PowerShell module installed and connected to your Azure account.
- Run the Cmdlet: Use the following command, replacing
<ResourceGroupName>
and<FrontDoorName>
with the actual names of your resource group and Front Door setup.Remove-AzFrontDoor -ResourceGroupName <ResourceGroupName> -Name <FrontDoorName>
- Confirmation Prompt: If you want to avoid accidentally deleting the wrong resource, you can use the
-Confirm
parameter to get a prompt before deletion. - Verify Removal: Check the Azure portal or run the command below to ensure that the Front Door service has been removed:
Get-AzFrontDoor -ResourceGroupName <ResourceGroupName>
Refer this link: https://learn.microsoft.com/en-us/powershell/module/az.frontdoor/remove-azfrontdoor?view=azps-13.4.0#description
If you're still unable to resolve this issue after trying the steps above, here are some follow-up questions that could help clarify the situation further:
- Have you received any specific error messages when trying to remove the Front Door?
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to "Accept the answer” and “Yes” wherever the information provided helps you, this can be beneficial to other community members.