Skip to content

Commit 8a21734

Browse files
Merge pull request #10663 from MicrosoftDocs/main
Auto Publish – main to live - 2026-02-03 18:00 UTC
2 parents ac59e46 + 656eb0a commit 8a21734

9 files changed

Lines changed: 287 additions & 197 deletions

support/azure/.openpublishing.redirection.azure.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6354,6 +6354,14 @@
63546354
"source_path": "app-service/ase-migration-faq.yml",
63556355
"redirect_url": "/troubleshoot/azure/app-service/welcome-app-service",
63566356
"redirect_document_id": true
6357+
},
6358+
{
6359+
"source_path": "app-service/create-delete-resources-faq.yml",
6360+
"redirect_url": "/troubleshoot/azure/app-service/create-delete-resources-faq-new",
6361+
},
6362+
{
6363+
"source_path": "app-service/scaling-web-app-faq.yml",
6364+
"redirect_url": "/troubleshoot/azure/app-service/scaling-web-app-faq-new",
63576365
},
63586366
{
63596367
"source_path": "azure-monitor/app-insights/agent/change-analysis-troubleshoot.md",
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
---
2+
title: FAQ about creating or deleting web apps in Azure App Service
3+
description: Get answers to common questions about creating and deleting web apps in Azure App Service. Learn about naming, quotas, permissions, billing, and how to restore deleted apps.
4+
services: active-directory
5+
author: JarrettRenshaw
6+
ms.reviewer: amehrot, rimarr, jarrettr
7+
ms.topic: faq
8+
ms.date: 11/24/2025
9+
ms.author: jarrettr
10+
ms.service: azure-app-service
11+
ms.custom: sap:Configuration and Management
12+
---
13+
14+
# Frequently asked questions about creating or deleting resources in Azure App Service
15+
16+
## Summary
17+
18+
This article answers common questions about creating and deleting [web apps in Azure App Service](https://azure.microsoft.com/services/app-service/web). Find solutions for naming conflicts, quota issues, permissions, billing, and restoring deleted apps.
19+
20+
## Create a web app in Azure App Service
21+
22+
### What if I create a web app with a duplicate name as another one?
23+
24+
We can't create a web app with a name that already exists in Azure. The web app name is part of the web app's URL, so it must be unique among all Azure App Service web apps.
25+
26+
### How can I create an Azure App Service web app in a region that's unavailable in the subscription?
27+
Certain Azure regions require customers to go through a request process to gain access. For more information, see the [Azure region access request process](../general/region-access-request-process.md) and [Azure App Service available by region](https://azure.microsoft.com/global-infrastructure/services/?products=app-service&regions=all).
28+
29+
### What if the requested SKU of the App Service plan isn't available in the resource group?
30+
31+
Your App Service deployments might not have specific SKUs available due to constraints (for example, the SKU isn't available in the region).
32+
33+
If the requested SKU isn't available in the resource group, you must create a new App Service Plan in a new resource group in the same region or in the same resource group using a different region.
34+
35+
If you want to reuse the same resource group and region, you must delete all the App Services, App Service plans, and `Microsoft.Web/Certificates` resources and then create the desired SKU in this resource group. Be aware that migrating App Services originating in this resource group to another resource group won't unblock the creation.
36+
37+
### I’m getting the following error - “This region has quota of 0 instances for your subscription. Try selecting a different region or SKU." You might also consistently experience resource creation issues in a particular region.
38+
39+
This means your subscription has no available quota for the selected region. You have two options:
40+
41+
1. Create your web app in a different region. If possible, choose a geographically paired region for better resiliency and compliance. Examples include:
42+
43+
- *West US 2**West Central US*
44+
- *East Asia (Hong Kong SAR)**Southeast Asia (Singapore)*
45+
46+
Each Azure region has unique characteristics that affect performance, availability, and regulatory requirements. Selecting the right region is critical for your workload. For more information, see:
47+
48+
- [Azure region pairs and nonpaired regions](/azure/reliability/regions-paired#azure-cross-region-replication-pairings-for-all-geographies)
49+
- [Azure regions decision guide - Select Azure regions](/azure/cloud-adoption-framework/ready/azure-setup-guide/regions)
50+
51+
2. Request additional quota for your App Service plan.
52+
53+
Use the [App Service quota self-service experience](https://portal.azure.com/?feature.customportal=false#view/Microsoft_Azure_Capacity/QuotaMenuBlade/~/overview) in the [Azure portal](https://portal.azure.com). This provides a dedicated quota blade where you can:
54+
55+
- View current usage and limits across SKUs.
56+
- Set custom quotas tailored to your plan.
57+
58+
## Delete or restore web apps in Azure App Service
59+
60+
### If I delete all my web apps, am I still charged?
61+
62+
Yes, charges still apply unless you delete the App Service plan that the web app runs on and all its web apps.
63+
64+
To stop all billing associated with your App Service, delete the App Service plan or scale the App Service plan to the free tier. For more information, see [How much does my App Service Plan cost?](/azure/app-service/overview-hosting-plans#how-much-does-my-app-service-plan-cost) and [Plan and manage costs for Azure App Service](/azure/app-service/overview-manage-costs).
65+
66+
### I can't create or delete an Azure App Service web app due to a permission error. What permissions do I need to create or delete a web app?
67+
68+
You need at a minimum Contributor access on the resource group to deploy App Services. If you have Contributor access only on the App Service plan and web app, it won't allow you to create the app service in the resource group.
69+
70+
For more information, see [Azure built-in roles](/azure/role-based-access-control/built-in-roles).
71+
72+
### I'm trying to delete my App Service plan, but I'm getting the following error - "Storage usage quota exceeded. Can't update or delete a server farm. Please make sure your file system storage is below the limit of the target pricing tier". How and where do I check the file system storage limit?
73+
74+
During the deletion process, we calculate the usage of the remaining App Service plans. If they're above the remaining limit, then this error appears.
75+
76+
The storage limit is the total content size across all apps in the same App Service plan. The total content size of all apps across all App Service plans in a single resource group and region can't exceed 500 GB. The file system quota for App Service hosted apps is determined by the aggregate of App Service plans created in a region and resource group.
77+
78+
For more information, see:
79+
80+
- [App Service limits - Storage](/azure/azure-resource-manager/management/azure-subscription-service-limits#app-service-limits)
81+
- [App Service pricing](https://azure.microsoft.com/pricing/details/app-service/windows)
82+
83+
### Is there a way to list the deleted web apps for my App Service subscription?
84+
85+
You can run `Get-AzDeletedWebApp` to get the list of the web apps that were deleted within the last 30 days in your Subscription ID. Deleted apps are purged from the system 30 days after the initial deletion. After an app is purged, it can't be recovered. For more information, see [List deleted apps](/azure/app-service/app-service-undelete#list-deleted-apps).
86+
87+
### How do I restore a deleted web app or a deleted App Service plan?
88+
If the web app was deleted within the last 30 days, you can restore it using `Restore-AzDeletedWebApp`. For more information, see:
89+
90+
- [Restore deleted app](/azure/app-service/app-service-undelete#restore-deleted-app)
91+
- [Restore Deleted web apps](https://techcommunity.microsoft.com/t5/apps-on-azure-blog/restore-undelete-deleted-web-apps/ba-p/2922088)
92+
93+
[!INCLUDE [Third-party contact disclaimer](~/includes/third-party-contact-disclaimer.md)]

support/azure/app-service/create-delete-resources-faq.yml

Lines changed: 0 additions & 106 deletions
This file was deleted.

0 commit comments

Comments
 (0)