You cannot directly move App Service Plans/Web Apps across webspaces. Instead, you need to recreate and redeploy:
- Check Current Dependencies
List out the App Service Plans and the Web Apps linked to them. Note the region, SKU, and configuration.
- Create a New App Service Plan
In the target resource group (rg-c1-mta-test-centralus), create a new App Service Plan in the same region as the old one. Ensure it has the same pricing tier (SKU).
- Move or Recreate Web Apps
Option 1: Use “Clone App” (in the Azure Portal) to clone each Web App into the new App Service Plan.
Option 2: Use Backup & Restore (if supported by your tier).
Option 3: Redeploy your apps from source control / CI-CD pipeline into the new App Service Plan.
- Migrate Other Resources
Settings like App Settings, Connection Strings, Managed Identities, Custom Domains, Certificates must be reconfigured or exported/imported manually.
- DNS / Traffic Swap
Update DNS or use Traffic Manager / Front Door / Swap slots to minimize downtime. Verify apps are working in the new group.
- Clean Up
Once tested, delete the old App Service Plan and apps from rg_MTA.