An Azure personalized recommendation engine that helps users follow best practices to optimize Azure deployments.
Hello ,
The error you’re encountering:
{
"code": "DenyAssignmentAuthorizationFailed",
"message": "The client '******@kiet.edu' ... access is denied because of the deny assignment '[UNUSUALACTIVITY] FULL DENY ASSIGNMENT ON / FOR ALL USERS ADDED'"
}
indicates that a Deny Assignment is applied at the root scope of your subscription. Deny assignments override all RBAC permissions, so even if your role allows resource group creation, this block will prevent it. In your case, it seems triggered by unusual activity protection in Azure for Students subscriptions.
Recommended Actions / Workarounds:
- Verify subscription status: Ensure your Azure for Students subscription is active.
- Check Deny Assignments:
- Go to Subscriptions → [Your Subscription] → Access Control (IAM) → Deny Assignments
- Look for the deny assignment named [UNUSUALACTIVITY] FULL DENY ASSIGNMENT.
- Note: This type of deny assignment cannot be removed by you.
- Temporary workaround: If urgent, you could create a new Azure for Students subscription, though contacting support is the official resolution.
References:
Hope this helps! Thank you!