How to remove Front Door

SBP 0 Reputation points
2025-05-02T18:34:07.0433333+00:00

I have had Azure for hosting for some time and in 2025 they added Front Door, which I do not need nor requested. I have attempted to remove but I keep getting charged. Anyone know how to have support respond? I have attempted several support tickets.

Azure Front Door
Azure Front Door
An Azure service that provides a cloud content delivery network with threat protection.
828 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Rohith Vinnakota 4,585 Reputation points Microsoft External Staff Moderator
    2025-05-02T19:01:59.53+00:00

    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:

    1. Open PowerShell: Make sure you have the Azure PowerShell module installed and connected to your Azure account.
    2. 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>
      
    3. Confirmation Prompt: If you want to avoid accidentally deleting the wrong resource, you can use the -Confirm parameter to get a prompt before deletion.
    4. 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:

    1. 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.


Your answer

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