Skip to content

Commit 984cdd2

Browse files
Add ApplicationGatewaySkuNotSpecified.md documentation
1 parent ab615b4 commit 984cdd2

2 files changed

Lines changed: 38 additions & 1 deletion

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Troubleshoot ApplicationGatewaySkuNotSpecified Error
2+
3+
## Symptom:
4+
Application Gateway cannot be created or updated because the SKU (size) for the gateway has not been specified resulting in error `ApplicationGatewaySkuNotSpecified`
5+
6+
## Cause:
7+
The **SKU** (Standard or WAF) for the Application Gateway was not provided during the creation or configuration process.
8+
9+
## Resolution:
10+
1. **Verify SKU Settings:**
11+
- Ensure that the correct SKU is specified when creating or configuring the Application Gateway.
12+
- For example, use `Standard_v2` or `WAF_v2` for newer SKU types.
13+
- Example configuration:
14+
```json
15+
"sku": {
16+
"name": "Standard_v2",
17+
"tier": "Standard"
18+
}
19+
```
20+
21+
2. **Update Application Gateway Configuration:**
22+
- If modifying an existing Application Gateway, update the SKU settings using the Azure Portal, CLI, or ARM template.
23+
24+
3. **Check ARM Template/CLI Command:**
25+
- If using an ARM template or Azure CLI, ensure that the `sku` section is included correctly.
26+
- For CLI:
27+
```bash
28+
az network application-gateway create --name <gateway_name> --resource-group <resource_group> --sku Standard_v2 --public-ip-address <public_ip>
29+
```
30+
31+
4. **Re-deploy or Retry Creation:**
32+
- After specifying the SKU, retry creating or updating the Application Gateway.
33+
34+
---
35+
36+
### More Information:
37+
[Application Gateway SKU Types](https://learn.microsoft.com/en-us/azure/application-gateway/overview-v2#sku-types)
38+

support/azure/application-gateway/readme.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)