From ab615b4941440f56dffc184c84a95740275946e6 Mon Sep 17 00:00:00 2001 From: Gitanjali Verma <36200368+gitanjali1993@users.noreply.github.com> Date: Thu, 22 Jan 2026 00:21:32 +0530 Subject: [PATCH 1/6] Add initial README for application gateway --- support/azure/application-gateway/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 support/azure/application-gateway/readme.md diff --git a/support/azure/application-gateway/readme.md b/support/azure/application-gateway/readme.md new file mode 100644 index 00000000000..a0990367ef8 --- /dev/null +++ b/support/azure/application-gateway/readme.md @@ -0,0 +1 @@ +TBD From 984cdd2ad8fb4fafb514501d421132b3d7cba7c1 Mon Sep 17 00:00:00 2001 From: Gitanjali Verma <36200368+gitanjali1993@users.noreply.github.com> Date: Thu, 22 Jan 2026 01:04:48 +0530 Subject: [PATCH 2/6] Add ApplicationGatewaySkuNotSpecified.md documentation --- .../ApplicationGatewaySkuNotSpecified.md | 38 +++++++++++++++++++ support/azure/application-gateway/readme.md | 1 - 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md delete mode 100644 support/azure/application-gateway/readme.md diff --git a/support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md b/support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md new file mode 100644 index 00000000000..e8879c69475 --- /dev/null +++ b/support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md @@ -0,0 +1,38 @@ +# Troubleshoot ApplicationGatewaySkuNotSpecified Error + +## Symptom: +Application Gateway cannot be created or updated because the SKU (size) for the gateway has not been specified resulting in error `ApplicationGatewaySkuNotSpecified` + +## Cause: +The **SKU** (Standard or WAF) for the Application Gateway was not provided during the creation or configuration process. + +## Resolution: +1. **Verify SKU Settings:** + - Ensure that the correct SKU is specified when creating or configuring the Application Gateway. + - For example, use `Standard_v2` or `WAF_v2` for newer SKU types. + - Example configuration: + ```json + "sku": { + "name": "Standard_v2", + "tier": "Standard" + } + ``` + +2. **Update Application Gateway Configuration:** + - If modifying an existing Application Gateway, update the SKU settings using the Azure Portal, CLI, or ARM template. + +3. **Check ARM Template/CLI Command:** + - If using an ARM template or Azure CLI, ensure that the `sku` section is included correctly. + - For CLI: + ```bash + az network application-gateway create --name --resource-group --sku Standard_v2 --public-ip-address + ``` + +4. **Re-deploy or Retry Creation:** + - After specifying the SKU, retry creating or updating the Application Gateway. + +--- + +### More Information: +[Application Gateway SKU Types](https://learn.microsoft.com/en-us/azure/application-gateway/overview-v2#sku-types) + diff --git a/support/azure/application-gateway/readme.md b/support/azure/application-gateway/readme.md deleted file mode 100644 index a0990367ef8..00000000000 --- a/support/azure/application-gateway/readme.md +++ /dev/null @@ -1 +0,0 @@ -TBD From b8069851ef19744f79400b3e409e2da67d6bbf0b Mon Sep 17 00:00:00 2001 From: Gitanjali Verma <36200368+gitanjali1993@users.noreply.github.com> Date: Thu, 22 Jan 2026 08:24:02 +0530 Subject: [PATCH 3/6] Update ApplicationGatewaySkuNotSpecified.md with troubleshooting info Added metadata and troubleshooting information for ApplicationGatewaySkuNotSpecified error. --- ...cified.md => applicationgatewayskunotspecified.md} | 11 +++++++++++ 1 file changed, 11 insertions(+) rename support/azure/application-gateway/{ApplicationGatewaySkuNotSpecified.md => applicationgatewayskunotspecified.md} (71%) diff --git a/support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md b/support/azure/application-gateway/applicationgatewayskunotspecified.md similarity index 71% rename from support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md rename to support/azure/application-gateway/applicationgatewayskunotspecified.md index e8879c69475..0cea272c37d 100644 --- a/support/azure/application-gateway/ApplicationGatewaySkuNotSpecified.md +++ b/support/azure/application-gateway/applicationgatewayskunotspecified.md @@ -1,3 +1,14 @@ +--- +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:Failed operations +#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. +--- + # Troubleshoot ApplicationGatewaySkuNotSpecified Error ## Symptom: From b63359731bf21958e02d0fd423988c2a3b3c6230 Mon Sep 17 00:00:00 2001 From: Gitanjali Verma <36200368+gitanjali1993@users.noreply.github.com> Date: Thu, 22 Jan 2026 08:29:21 +0530 Subject: [PATCH 4/6] Fix link formatting for Application Gateway SKU Types --- .../application-gateway/applicationgatewayskunotspecified.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/azure/application-gateway/applicationgatewayskunotspecified.md b/support/azure/application-gateway/applicationgatewayskunotspecified.md index 0cea272c37d..f22cc9cca81 100644 --- a/support/azure/application-gateway/applicationgatewayskunotspecified.md +++ b/support/azure/application-gateway/applicationgatewayskunotspecified.md @@ -45,5 +45,5 @@ The **SKU** (Standard or WAF) for the Application Gateway was not provided durin --- ### More Information: -[Application Gateway SKU Types](https://learn.microsoft.com/en-us/azure/application-gateway/overview-v2#sku-types) +[Application Gateway SKU Types](https://learn.microsoft.com/azure/application-gateway/overview-v2#sku-types) From 7dc9f7501e5e07bcdc4a4ed68a78920490664d4b Mon Sep 17 00:00:00 2001 From: Gitanjali Verma <36200368+gitanjali1993@users.noreply.github.com> Date: Thu, 22 Jan 2026 09:10:27 +0530 Subject: [PATCH 5/6] Update link for Application Gateway SKU Types --- .../application-gateway/applicationgatewayskunotspecified.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/azure/application-gateway/applicationgatewayskunotspecified.md b/support/azure/application-gateway/applicationgatewayskunotspecified.md index f22cc9cca81..5c03d70cbb0 100644 --- a/support/azure/application-gateway/applicationgatewayskunotspecified.md +++ b/support/azure/application-gateway/applicationgatewayskunotspecified.md @@ -45,5 +45,5 @@ The **SKU** (Standard or WAF) for the Application Gateway was not provided durin --- ### More Information: -[Application Gateway SKU Types](https://learn.microsoft.com/azure/application-gateway/overview-v2#sku-types) +[Application Gateway SKU Types](https://github.com/MicrosoftDocs/azure-docs/blob/cca93efa4de263ed8b6d308183e77a975763ce91/articles/application-gateway/overview-v2.md) From 31da41329910de5f648c7863c9b22116dbdc66de Mon Sep 17 00:00:00 2001 From: Gitanjali Verma <36200368+gitanjali1993@users.noreply.github.com> Date: Sat, 24 Jan 2026 08:13:00 +0530 Subject: [PATCH 6/6] Revise custom metadata for Application Gateway error Updated the custom metadata to specify issues related to CRUD operations. --- .../application-gateway/applicationgatewayskunotspecified.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/azure/application-gateway/applicationgatewayskunotspecified.md b/support/azure/application-gateway/applicationgatewayskunotspecified.md index 5c03d70cbb0..e3d2e7f4e38 100644 --- a/support/azure/application-gateway/applicationgatewayskunotspecified.md +++ b/support/azure/application-gateway/applicationgatewayskunotspecified.md @@ -5,7 +5,7 @@ ms.date: 01/22/2026 editor: giverm ms.reviewer: rimayber ms.service: azure-application-gateway -ms.custom: sap:Failed operations +ms.custom: sap:Issues with Create, Update and Delete (CRUD) #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. ---