An Azure personalized recommendation engine that helps users follow best practices to optimize Azure deployments.
Hello Vaibhav, it sounds like the “No access to this subscription, or no Azure OpenAI service available under it” error is telling us that your account either doesn’t have the right permissions at the subscription level or you’re pointed at the wrong subscription/tenant context. Here are the most common fixes:
- Verify your RBAC role at the subscription scope
- In Azure CLI run: az role assignment list --scope /subscriptions/<your-subscription-ID>
- Check that you (or the service principal you’re using) are listed as Owner or Contributor.
- If you’re missing those roles, have your subscription admin assign you Owner/Contributor at the subscription level (not just a resource group).
- Ensure you’re signed into the correct subscription and directory
- az account show • Confirms which subscription and tenant you’re targeting.
- If it’s not the right one: az account set --subscription <your-subscription-ID>
- Wait for role-assignment propagation
- After a new role is granted, it can take 5–10 minutes before you can perform high-privilege actions.
Reference links
• Troubleshoot Azure RBAC roles and permissions: https://aka.ms/role-rbac-troubleshoot
• Assign Azure roles via CLI: https://aka.ms/role-assign-cli
• Reinstate admin privileges for CSP subscriptions: https://aka.ms/reinstate-csp