| title | Troubleshoot ApplicationGatewaySkuNotSpecified Error Code |
|---|---|
| description | Learn how to resolve ApplicationGatewaySkuNotSpecified error when you try to create or modify Azure Application Gateway. |
| ms.date | 01/22/2026 |
| editor | giverm |
| ms.reviewer | rimayber |
| ms.service | azure-application-gateway |
| ms.custom | sap:Issues with Create, Update and Delete (CRUD) |
Application Gateway cannot be created or updated because the SKU (size) for the gateway has not been specified resulting in error ApplicationGatewaySkuNotSpecified
The SKU (Standard or WAF) for the Application Gateway was not provided during the creation or configuration process.
-
Verify SKU Settings:
- Ensure that the correct SKU is specified when creating or configuring the Application Gateway.
- For example, use
Standard_v2orWAF_v2for newer SKU types. - Example configuration:
"sku": { "name": "Standard_v2", "tier": "Standard" }
- For example, use
- Ensure that the correct SKU is specified when creating or configuring the Application Gateway.
-
Update Application Gateway Configuration:
- If modifying an existing Application Gateway, update the SKU settings using the Azure Portal, CLI, or ARM template.
-
Check ARM Template/CLI Command:
- If using an ARM template or Azure CLI, ensure that the
skusection is included correctly.- For CLI:
az network application-gateway create --name <gateway_name> --resource-group <resource_group> --sku Standard_v2 --public-ip-address <public_ip>
- For CLI:
- If using an ARM template or Azure CLI, ensure that the
-
Re-deploy or Retry Creation:
- After specifying the SKU, retry creating or updating the Application Gateway.