Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @John Line ,
Most ASP-creation 409s trace back to this. A webspace is tied to a unique combination of region + resource group + OS, and all plans created with that same combination land in the same webspace. Critically, the webspace is fixed at creation time moving the plan/app to a different resource group afterwards does NOT change it. That's why Azure's error messages keep telling you to "use a different resource group."
Try below steps:
- Deploy into a brand-new resource group (lands you in a fresh webspace with capacity) the officially suggested mitigation, though it fights naming conventions3.
- Retry later - regional scale-out takes time3.
- Try a different SKU/tier (e.g. B2 or S1) then scale up3.
- Check Subscription → Usage + quotas for region/resource-type limits3.
- Note: deleting and recreating the same-named RG often does not help, and the same deployment can succeed from a different account if you see that, please let us know
"Requested features 'Linux Worker, MV3 Series Worker' not available in resource group… Please try using a different resource group or create a new one." The webspace/DU doesn't support the SKU you asked for older DUs may support PremiumV3 but not the newer Pmv3/MV sizes
Moving the plan to another RG won't fix it. You must create a new plan in a NEW resource group in the same region with the target SKU, then create a new app there and migrate settings/bindings across (note: there's no "Clone App" for Linux)2.
"Zone redundancy is not available for resource group ''… Please deploy app service plan to a new resource group." (ZoneRedundancyNotAllowedInResourceGroup / ValidationForResourceFailed) Same webspace constraint the existing webspace isn't zone-redundancy capable. Reported even in supported regions, and notably hitting Windows plans while Linux succeeds (different OS = different webspace)
Update:
Please retry the operation now and check if its working
Hope this helps!
If the resolution was helpful, kindly take a moment to click on and click on Yes for was this answer helpful. And, if you have any further query do let us know.