Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hello @Ankit Thakkar
ZoneRedundancyNotAllowedInResourceGroup occurs because Azure App Service Plans are deployed on underlying scale units, and zone redundancy is only supported if that scale unit supports availability zones; as per Microsoft documentation, if the plan is on a scale unit that doesn’t support zones, you cannot enable or create a zone‑redundant plan there and must deploy to a new one. Since all plans in the same resource group (same region and OS) are placed on the same infrastructure, the first App Service Plan determines whether that resource group supports zone redundancy.
Therefore, if the first plan is created without zone redundancy, the resource group may be tied to a non‑zone‑redundant scale unit, causing subsequent zone‑redundant deployments to fail; to use multi‑AZ, you need to create a new resource group and deploy the first plan with zone redundancy enabled.
Reference:
https://learn.microsoft.com/en-us/azure/app-service/configure-zone-redundancy?tabs=portal
Kindly let us know if the above helps or you need further assistance on this issue.
Please "accept" if the information helped you. This will help us and others in the community as well