Description:

The use of Basic or Free SKUs in Azure whilst cost effective have significant limitations in terms of what can be monitored and what support can be realized from Microsoft. Typically, these SKU’s do not have a service SLA and Microsoft will usually refuse to

provide support for them. Consequently Basic/Free SKUs should never be used for production workloads.


Rationale:

Typically, production workloads need to be monitored and should have an SLA with Microsoft, using Basic SKUs for any deployed product will mean that that these capabilities do not exist. The following resource types should use standard SKUs as a minimum.

• Public IP Addresses

• Network Load Balancers

• REDIS Cache

• SQL PaaS Databases

• VPN Gateways


Impact:

The impact of enforcing Standard SKU's is twofold

1. There will be a cost increase

2. The monitoring and service level agreements will be available and will support the production service.

All resources should be either tagged or in separate Management Groups/Subscriptions


Audit:

This needs to be audited by Azure Policy (one for each resource type) and denied for each artifact that is production.


From Azure Portal

1. Open Azure Resource Graph Explorer

2. Click New query

3. Paste the following into the query window: Resources

| where sku contains 'Basic' or sku contains 'consumption'

| order by type

4. Click Run query then evaluate the results in the results window.


From Azure CLI

az graph query -q "Resources | sku contains 'Basic' or sku contains 'consumption' | order by type"


From PowerShell

Get-AzResource | ?{ $_.Sku -EQ "Basic"}


Remediation:

Each artifact has its own process for upgrading from basic to standard SKU's and this should be followed if required.


Default Value:

Policy should enforce standard SKUs for the following artifacts:

• Public IP Addresses

• Network Load Balancers

• REDIS Cache

• SQL PaaS Databases

• VPN Gateways