This chapter covers Azure Support Plans, a critical component of managing your cloud environment effectively. Understanding support options is essential for the AZ-900 exam because questions about support plans, response times, and severity levels appear regularly in the 'Azure Management and Governance' domain, which carries approximately 15-20% of the exam weight. By the end of this chapter, you will be able to describe the different support plans available, their features, and how to choose the right one for your organization.
Jump to a section
Imagine you own a small retail store. You have two options for handling problems: you can rely on free online forums and hope a stranger helps you fix a broken cash register, or you can pay for a comprehensive insurance and maintenance plan that guarantees a technician will call you back within an hour, fix the issue, and even send a monthly report on how to prevent future breakdowns. Azure Support Plans work the same way. The Basic plan (included free) gives you access to documentation, community forums, and billing support — like reading store manuals and asking other shop owners. As you pay more, you get faster response times (like a 1-hour callback for critical issues), a dedicated account manager who knows your business, and proactive guidance (like a consultant who reviews your store layout to prevent theft). Just as you wouldn't insure a lemonade stand the same way as a chain of supermarkets, Azure offers plans from Basic to Premier, each with escalating levels of technical support, response SLAs, and advisory services. The mechanism is straightforward: you choose a plan based on your workload's criticality, and Azure assigns support engineers with the right expertise to meet your response-time guarantees.
What is an Azure Support Plan and Why Does It Matter?
When you run workloads in the cloud, you need a way to get help when things go wrong — whether it's a configuration error, a service outage, or a performance issue. Azure Support Plans are subscription-based offerings that provide technical support from Microsoft engineers, with defined response times, severity levels, and additional services like architectural guidance. The business problem they solve is simple: without a paid support plan, you have no guaranteed access to Microsoft support staff for troubleshooting or resolution. This can lead to extended downtime, lost revenue, and frustrated customers.
On the AZ-900 exam, you'll be expected to differentiate between the four main support plans: Basic, Developer, Standard, and Professional Direct. You also need to know the key features of each, including response times for different severity levels, and understand that Premier Support is available for large enterprise customers but is not part of the standard exam scope.
How Azure Support Plans Work: The Mechanism
Azure Support Plans operate on a subscription model tied to your Azure subscription. When you purchase a plan, you gain access to a support portal where you can submit support requests (tickets). Each request is assigned a severity level (A, B, or C) based on the impact on your business:
Severity A (Critical): Business operations have significant degradation or termination. Requires immediate response.
Severity B (Moderate): Business operations have moderate degradation but can continue.
Severity C (Low): Business operations are minimally impacted or questions about functionality.
Behind the scenes, Azure routes your ticket to the appropriate support team based on the service and severity. The support engineer works to resolve the issue, and you can track progress via the portal. The response time — how quickly Microsoft acknowledges your ticket — depends on your support plan and severity level.
Key Components and Tiers
Azure offers four standard support plans (plus Premier for large enterprises):
Basic (Free): Included with every Azure subscription. Provides access to billing and subscription support, documentation, whitepapers, and community forums. No technical support for break-fix issues.
Developer: For trial and non-production environments. Includes technical support during business hours (9 AM-5 PM local time) with response times:
- Severity A: Not available (Developer plan does not support severity A) - Severity B: < 8 hours (business hours) - Severity C: < 8 hours (business hours)
Standard: For production workloads. Provides 24/7 technical support with faster response times:
- Severity A: < 1 hour - Severity B: < 4 hours - Severity C: < 8 hours
Professional Direct: For business-critical workloads. Includes all Standard features plus:
- Severity A: < 1 hour (same as Standard but with faster escalation) - Severity B: < 2 hours - Severity C: < 4 hours - ProDirect delivery manager - Architectural guidance (up to 2 per year)
Premier: For large enterprises with strategic partnership with Microsoft. Custom response times, dedicated account manager, and on-site support options. Not typically covered on AZ-900.
Pricing is based on the plan and the amount of Azure spend (or a flat fee for Premier). For example, Standard plan costs about 5-10% of your monthly Azure spend, while Professional Direct is a flat monthly fee plus a percentage of spend.
Comparison to On-Premises Support
In an on-premises environment, you might have a support contract with your hardware vendor (e.g., Dell or HP) that provides next-business-day replacement of faulty parts. For software, you might have a Microsoft Premier Support contract for your on-premises servers. Azure Support Plans are similar but cloud-native: instead of shipping a replacement hard drive, Azure engineers can remotely diagnose and fix issues in the cloud infrastructure. The key difference is that Azure support is proactive — you can get architectural guidance to prevent issues, not just fix them after they occur.
Azure Portal and CLI Touchpoints
You manage your support plan in the Azure portal under 'Help + support'. From there, you can:
View your current support plan
Purchase or change a plan
Create a new support request (ticket)
Track existing requests
Using Azure CLI, you can create a support ticket with:
az support tickets create \
--ticket-name "ExampleTicket" \
--severity "critical" \
--title "Production database down" \
--description "The primary database is unresponsive." \
--contact-country "US" \
--contact-email "admin@contoso.com" \
--contact-first-name "John" \
--contact-last-name "Doe" \
--contact-method "email" \
--contact-locale "en-us"Note: The CLI command requires the az support extension, which may need to be installed.
Concrete Business Scenarios
Startup with low budget: A startup uses Basic plan for its development subscription. When they encounter a bug in Azure Functions, they rely on community forums. This is fine until a production outage forces them to upgrade to Standard.
Mid-size company with production workloads: A company running e-commerce on Azure VMs purchases Standard plan. When a VM goes down, they file a Severity A ticket and get a response within 1 hour. The engineer helps restore the VM from a backup.
Large enterprise with critical applications: A bank uses Professional Direct for its core banking system. They have a ProDirect delivery manager who conducts quarterly reviews and helps them design a disaster recovery plan.
Assess Your Support Needs
Before selecting a plan, evaluate your workloads: Are they production or non-production? What is the criticality? For development and test environments, Developer plan may suffice. For production, Standard or Professional Direct is recommended. Also consider your budget: Basic is free, Developer costs around $29/month, Standard is roughly 5-10% of Azure spend, and Professional Direct is a flat fee starting at $1,000/month plus spend percentage.
Purchase a Support Plan in Azure Portal
Navigate to 'Help + support' in the Azure portal, then select 'Support plans'. Choose the plan that matches your assessment. You'll need to agree to the terms and provide billing information. The plan is applied to your subscription immediately. For Developer, Standard, and Professional Direct, you can also purchase through a Microsoft representative or Cloud Solution Provider.
Create a Support Request (Ticket)
When you need help, go to 'Help + support' and click 'Create a support request'. Select the issue type (technical, billing, subscription management, etc.). For technical issues, you'll need to specify the service (e.g., Virtual Machines), the problem type, and provide details. Assign a severity level (A, B, or C) based on impact. Azure then routes the ticket to the appropriate support queue.
Track and Escalate the Support Request
After submission, you can monitor the ticket status in the portal. Azure support engineers will update the ticket with progress. If you are not satisfied with the response or resolution, you can escalate by requesting a manager review or by calling the support phone number (available for Standard and above). Escalation typically results in a senior engineer taking over.
Review Support Plan Reports and Recommendations
For Professional Direct and Premier plans, you receive periodic reports summarizing support requests, response times, and proactive recommendations. Use these to identify recurring issues, improve your architecture, and optimize costs. For other plans, you can download historical ticket data for analysis.
Scenario 1: E-commerce Company During Black Friday
A mid-sized e-commerce company runs its website on Azure App Service and uses Azure SQL Database. They have the Standard support plan. During Black Friday, traffic spikes and the database starts experiencing high latency. The operations team submits a Severity B ticket (moderate impact) because sales are affected but the site is still up. The response time guarantee is < 4 hours, but because it's a high-traffic event, they escalate to Severity A (critical) after 2 hours, and the response comes within 1 hour. The engineer helps them scale up the database tier and implement query optimization. Without Standard plan, they would have had no guaranteed response, potentially losing thousands of dollars in revenue per hour.
Scenario 2: Startup Migrating to Cloud
A startup is migrating its on-premises application to Azure. They purchase the Developer plan for their dev/test subscription. During migration, they encounter an error with Azure Site Recovery. They submit a Severity C ticket (low impact) and get a response within 8 business hours. The engineer provides documentation and a sample script to resolve the issue. The Developer plan is sufficient because the migration is not yet in production. However, if they had a production outage, they would need to upgrade to Standard for faster response.
Scenario 3: Financial Institution with Compliance Requirements
A bank uses Azure for its core banking system and has Professional Direct support. They have a dedicated ProDirect delivery manager who helps them design a disaster recovery architecture that meets regulatory requirements. When a critical vulnerability is discovered in a third-party component, they submit a Severity A ticket and get a response within 1 hour. The engineer provides a hotfix and works with the bank's team to apply it. The proactive guidance from Professional Direct helps them avoid common pitfalls, and the fast response minimizes risk.
What Goes Wrong When Set Up Incorrectly
Choosing Basic for production: A company uses Basic plan for a production workload. When a critical outage occurs, they have no way to get technical support from Microsoft. They rely on community forums, but the issue is unique to their configuration. Downtime extends to days, causing significant business loss.
Incorrect severity assignment: A user assigns Severity C to a production database outage because they think it's a minor issue. The response time is 8 hours, causing extended downtime. Proper training on severity definitions is crucial.
Not escalating when needed: A ticket sits unresolved for hours because the user does not escalate. Standard plan allows escalation to a manager, which can speed up resolution.
What AZ-900 Tests on This Objective (3.5)
The exam expects you to:
Describe the different Azure Support Plans (Basic, Developer, Standard, Professional Direct)
Identify the response times for each severity level (A, B, C) under each plan
Understand that Basic plan includes only billing and subscription support, not technical support
Know that Professional Direct includes a ProDirect delivery manager and architectural guidance
Recognize that Premier is an enterprise-level plan but not covered in detail
Common Wrong Answers and Why Candidates Choose Them
"Basic plan provides technical support for critical issues." Why: Candidates assume 'Basic' includes basic technical help. Reality: Basic only covers billing and subscription issues, not technical break-fix.
"Developer plan offers 24/7 support." Why: The word 'Developer' might imply full support. Reality: Developer plan provides support only during business hours (9 AM-5 PM local time).
"Standard and Professional Direct have the same response times for Severity A." Why: Both have <1 hour for Severity A. Reality: They are the same for Severity A, but Professional Direct has faster response for B and C (2 and 4 hours respectively vs 4 and 8 for Standard).
"All plans include access to Azure Advisor." Why: Azure Advisor is available to all subscription owners regardless of support plan. Reality: Advisor is free, but the exam may trick you into thinking it's a support plan feature.
Specific Terms and Values to Memorize
Response times:
- Developer: Severity B/C: < 8 business hours (no Severity A) - Standard: Severity A: < 1 hour, B: < 4 hours, C: < 8 hours - Professional Direct: Severity A: < 1 hour, B: < 2 hours, C: < 4 hours - Basic: No technical support (only billing/subscription) - Professional Direct: Includes ProDirect delivery manager and up to 2 architectural guidance sessions per year.
Edge Cases and Tricky Distinctions
The exam may ask: "Which support plan should you choose for a non-production environment that needs technical support?" Answer: Developer (not Basic).
Another: "You need 24/7 support for a production workload. Which plan is the minimum?" Answer: Standard (Developer is business hours only).
"You need a dedicated support engineer?" Answer: Professional Direct or Premier (Standard does not include a dedicated engineer).
Memory Trick
Use the acronym B.D.S.P (Basic, Developer, Standard, Professional Direct) and remember response times as: 1-2-4-8 (Professional Direct: 1,2,4; Standard: 1,4,8; Developer: no A, 8,8). Or think of the tiers as increasing in speed: Basic (no help), Developer (slow but some), Standard (faster), Professional Direct (fastest).
Azure offers four main support plans: Basic (free), Developer, Standard, and Professional Direct.
Basic plan includes only billing and subscription support, not technical support.
Developer plan provides technical support during business hours only (9 AM-5 PM local time) and does not support severity A issues.
Standard plan provides 24/7 support with response times: Severity A < 1 hour, B < 4 hours, C < 8 hours.
Professional Direct plan offers faster response times (B < 2 hours, C < 4 hours) and includes a ProDirect delivery manager and up to 2 architectural guidance sessions per year.
Support plans are purchased per subscription, not per resource group.
Premier plan exists for large enterprises but is not covered in detail on the AZ-900 exam.
You can create and track support requests in the Azure portal under 'Help + support'.
These come up on the exam all the time. Here's how to tell them apart.
Basic Plan
Free with any Azure subscription
No technical support for break-fix issues
Access to billing and subscription support only
No response time guarantees
Best for non-production or test environments
Standard Plan
Paid plan (5-10% of Azure spend)
24/7 technical support for all issues
Severity A response < 1 hour
Severity B < 4 hours, Severity C < 8 hours
Best for production workloads
Mistake
Basic plan includes technical support for Azure services.
Correct
Basic plan only provides access to billing and subscription support, documentation, and community forums. No technical support for break-fix issues is included.
Mistake
Developer plan offers 24/7 support.
Correct
Developer plan provides technical support only during business hours (9 AM-5 PM local time) for severity B and C issues. It does not support severity A issues.
Mistake
Standard and Professional Direct plans have identical response times.
Correct
While both offer <1 hour for severity A, Professional Direct has faster response times for severity B (<2 hours vs <4 hours) and severity C (<4 hours vs <8 hours).
Mistake
All Azure support plans include access to Azure Advisor.
Correct
Azure Advisor is a free service available to all Azure subscription owners regardless of support plan. It is not a feature of any paid support plan.
Mistake
You can purchase a support plan for a specific resource group.
Correct
Support plans are purchased at the subscription level, not per resource group. All resources in the subscription share the same plan.
Basic is free and includes only billing and subscription support, documentation, and community forums. Developer is a paid plan (around $29/month) that adds technical support during business hours for non-production environments. Developer does not support severity A (critical) issues, while Basic has no technical support at all.
Yes, you can upgrade your support plan at any time from the Azure portal. The new plan takes effect immediately. However, downgrades may take effect at the end of your billing period. You can also cancel a paid plan and revert to Basic.
With Standard plan, a severity A (critical) issue has a response time of less than 1 hour. This means a Microsoft support engineer will acknowledge your ticket within 1 hour of submission. Resolution time depends on the complexity of the issue.
Professional Direct includes a ProDirect delivery manager who acts as a single point of contact and provides proactive guidance, but not a dedicated engineer for every ticket. Support tickets are handled by the appropriate support team. Premier plan offers a dedicated technical account manager.
No, every subscription automatically includes the Basic plan at no cost. You are not required to purchase a paid plan. However, if you need technical support for production issues, a paid plan is strongly recommended.
Yes, Azure Support Plans cover technical support for Azure DevOps services. However, response times and severity levels apply as with any other Azure service. You can submit tickets for Azure DevOps issues through the same support portal.
The Standard plan costs approximately 5-10% of your monthly Azure spend. There is no fixed fee; it scales with your usage. For example, if you spend $10,000 per month on Azure services, the Standard plan would cost around $500-$1,000 per month.
You've just covered Azure Support Plans — now see how well it sticks with free AZ-900 practice questions. Full explanations included, no account needed.
Done with this chapter?