|
1 | | -TBD |
| 1 | +--- |
| 2 | +title: Troubleshoot ApplicationGatewaySkuNotSpecified Error Code |
| 3 | +description: Learn how to resolve ApplicationGatewaySkuNotSpecified error when you try to create or modify Azure Application Gateway. |
| 4 | +ms.date: 01/22/2026 |
| 5 | +editor: giverm |
| 6 | +ms.reviewer: rimayber |
| 7 | +ms.service: azure-application-gateway |
| 8 | +ms.custom: sap:Issues with Create, Update and Delete (CRUD) |
| 9 | +#Customer intent: As an Azure Application Gateway user, I want to troubleshoot an Application Gateway create or modify operation that failed because of ApplicationGatewaySkuNotSpecified error so that I can perform the operation successfully. |
| 10 | +--- |
| 11 | + |
| 12 | +# Troubleshoot ApplicationGatewaySkuNotSpecified Error |
| 13 | + |
| 14 | +## Symptom: |
| 15 | +Application Gateway cannot be created or updated because the SKU (size) for the gateway has not been specified resulting in error `ApplicationGatewaySkuNotSpecified` |
| 16 | + |
| 17 | +## Cause: |
| 18 | +The **SKU** (Standard or WAF) for the Application Gateway was not provided during the creation or configuration process. |
| 19 | + |
| 20 | +## Resolution: |
| 21 | +1. **Verify SKU Settings:** |
| 22 | + - Ensure that the correct SKU is specified when creating or configuring the Application Gateway. |
| 23 | + - For example, use `Standard_v2` or `WAF_v2` for newer SKU types. |
| 24 | + - Example configuration: |
| 25 | + ```json |
| 26 | + "sku": { |
| 27 | + "name": "Standard_v2", |
| 28 | + "tier": "Standard" |
| 29 | + } |
| 30 | + ``` |
| 31 | + |
| 32 | +2. **Update Application Gateway Configuration:** |
| 33 | + - If modifying an existing Application Gateway, update the SKU settings using the Azure Portal, CLI, or ARM template. |
| 34 | + |
| 35 | +3. **Check ARM Template/CLI Command:** |
| 36 | + - If using an ARM template or Azure CLI, ensure that the `sku` section is included correctly. |
| 37 | + - For CLI: |
| 38 | + ```bash |
| 39 | + az network application-gateway create --name <gateway_name> --resource-group <resource_group> --sku Standard_v2 --public-ip-address <public_ip> |
| 40 | + ``` |
| 41 | + |
| 42 | +4. **Re-deploy or Retry Creation:** |
| 43 | + - After specifying the SKU, retry creating or updating the Application Gateway. |
| 44 | + |
| 45 | +--- |
| 46 | + |
| 47 | +### More Information: |
| 48 | +[Application Gateway SKU Types](https://github.com/MicrosoftDocs/azure-docs/blob/cca93efa4de263ed8b6d308183e77a975763ce91/articles/application-gateway/overview-v2.md) |
0 commit comments