Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Welcome to Microsoft Q&A
@Seth Shuey I hope you are doing well,
In Azure App Service, the physical deployment region is tied directly to the underlying App Service Plan rather than the Web App itself. Once an App Service Plan and Web App are provisioned in a specific region
I'm going to share you two standard ways to move your application to Central US:
Option 1: Clone the Web App to Central US (Fastest Method)
If your App Service Plan is on a Standard, Premium, or Isolated tier, Azure provides a built-in clone feature that replicates your app, configuration, and content into a new region:
- In the Azure Portal, navigate to your existing Web App.
- In the left navigation menu under Development Tools, select Clone App.
- Create a New App Service Plan with the location set to Central US.
- Choose whether to clone app settings and deployment slots, then complete the wizard.
- Once verified in Central US, you can safely delete the original app and plan in Central Canada.
Option 2: Provision a New Plan and Redeploy (Recommended for Basic/Free Tiers)
If your current tier does not support app cloning or if you deploy via CI/CD:
- Create a new App Service Plan and Web App in Central US.
- Export your current configuration: go to Configuration on the existing app and copy your Application Settings, Connection Strings, and runtime stack settings to the new app.
- Redeploy your codebase or container image to the new Central US Web App via your deployment pipeline, GitHub Actions, or deployment center.
- If you have a custom domain, update your DNS records (CNAME/TXT) to point to the new
.azurewebsites.nethostname. - Delete the old Web App and its associated App Service Plan in Central Canada to stop further billing.
References:
Help make this community better for everyone: if this answer resolved your issue, please accept it or leave an upvote. If not, share more details in a comment so we can continue the discussion and find the right solution.Welcome to Microsoft Q&A