Not able to create the resource group under free subscription

Tirupathi Gangi Reddy 0 Reputation points
2026-09-05T03:05:59.4066667+00:00

My new Azure Free Account subscription is Active and I am the Owner. However, it is assigned to the “New Subscriptions” management group with the “Allowed resource types - NONE” policy, which prevents me from creating any resources. Please review and move my valid subscription to the appropriate management group.

Azure Policy
Azure Policy

An Azure service that is used to implement corporate governance and standards at scale for Azure resources.


2 answers

Sort by: Oldest
  1. Ravi Varma Mudduluru 12,625 Reputation points Microsoft External Staff Moderator
    2026-09-05T05:55:00.5933333+00:00

    Hello @Tirupathi Gangi Reddy

    Thank you for reaching out to Microsoft Q&A.

    Your subscription is Active and you are the Owner, but it landed under the “New Subscriptions” management group. That management group has an Azure Policy assignment (“Allowed resource types”) set to allow nothing, so every resource-creation attempt is denied. The policy is inherited, so even as Owner you can’t override it while the subscription stays there.

    Recommended fix:

    Move the subscription to a different management group that does not carry the restrictive policy (for example a Landing Zone, Sandbox, or any other group your tenant uses for normal workloads). Once the move completes, the blocking policy no longer applies and you can create resources normally.

    How to move it (Portal)

    1. Go to Management groups in the Azure portal.
    2. Open the current parent (“New Subscriptions”).
    3. Click the ellipsis (…) next to your subscription → Move.
    4. Select the new parent management group and save.

    Alternatively, open the target management group and use Add subscription.

    Permissions needed You (or a Global Administrator / Hierarchy Settings Administrator) need write permissions on the subscription and on both the source and target management groups. Owner on the subscription is usually enough if you also have rights on the target group. If the Owner role is only inherited from the current management group, the move is limited to groups where you also hold Owner.

    PowerShell / CLI equivalents are available if you prefer:

    New-AzManagementGroupSubscription -GroupId '<TargetMG-Id>' -SubscriptionId '<Your-Sub-Id>'
    
    az account management-group subscription add --name '<TargetMG-Id>' --subscription '<Your-Sub-Id>'
    

    After the move, give it a few minutes (sometimes up to 30) for the hierarchy and policy evaluation to refresh, then try creating a resource group again.

    Official Microsoft documentation that covers exactly this scenario:

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Was this answer helpful?

    0 comments No comments

  2. kagiyama yutaka 5,330 Reputation points
    2026-09-06T04:34:16.9633333+00:00

    I think the thing I wrote earlier in my comment is what decides this — Azure only lets a subscription move when Owner or Contributor is directly assigned on the subscription and you have write on the target MG. if your Owner is inherited from the current MG, that permission is not included, so a tenant admin has to give you a direct role or move it instead.

    Was this answer helpful?

    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.