Cancelling Azure

Griffin Horwitz 0 Reputation points
2024-06-25T20:12:45.42+00:00

I am trying to cancel my Azure subscription, but whenever I do, something called "Registers the BillingBenefits Resource Provider" is automatically initiated. Does this affect my ability to cancel the subscription, and how can I get that function to not initiate?

Azure Cost Management
Azure Cost Management
A Microsoft offering that enables tracking of cloud usage and expenditures for Azure and other cloud providers.
2,546 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vishal Kondabathini 0 Reputation points
    2024-06-25T20:25:25.0466667+00:00

    The automatic initiation of "Registers the BillingBenefits Resource Provider" should not affect your ability to cancel your Azure subscription. This process is part of Azure's resource provider registration, which configures your subscription to work with specific services.

    To prevent this function from initiating, you can manually unregister the resource provider using Azure CLI or PowerShell:

    Azure CLI:

    bash

    az provider unregister --namespace Microsoft.Billing

    PowerShell:

    powershell

    Unregister-AzResourceProvider -ProviderNamespace Microsoft.Billing

    Ensure no resources from this provider are in use before unregistering.


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.