Why is my account producing Resource Groups that i haven't created?

GA 0 Reputation points
2025-11-24T20:53:47.38+00:00

I am learning Azure = mainly from videos. So I have this project and i created a Resource group for it. Free account, I'm the owner. But my account is producing Resource Groups that i haven't created. And I'm not being able to delete them either.

Microsoft Security | Microsoft Identity Manager
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. SUNOJ KUMAR YELURU 17,321 Reputation points MVP Volunteer Moderator
    2025-11-28T03:13:04.5833333+00:00

    Hello @GA,

    Azure does not automatically create Resource Groups in your subscription. The unexpected Resource Groups are likely created by services you deployed, such as Managed Applications. You need to identify the parent service creating the Resource Groups and delete that service first before you can delete the Resource Groups.

    You can use Azure CLI or Azure PowerShell commands to list and delete:

    Azure CLI

    • To list all resource groups: az group list
    • To delete a specific resource group: az group delete --name <ResourceGroupName>

    Azure PowerShell

    • Get-AzResourceGroup
    • Remove-AzResourceGroup -Name <ResourceGroupName>

    If the Answer is helpful, please click Accept Answer and Up-Vote, so that it can help others in the community looking for help on similar topics.

    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.