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)
- Go to Management groups in the Azure portal.
- Open the current parent (“New Subscriptions”).
- Click the ellipsis (…) next to your subscription → Move.
- 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".