Tiger
Tiger

Reputation: 101

Clone azure app service from one subscription to another under the same tenant

We are trying to clone or restore AppServices from a stable environment in Azure while provisioning new environments. The stable environment is in one Subscription but the new environments to be created are in another subscription. Both subscriptions are in the same tenant. Ideally I would like to clone the AppServices from the stable envs when provisioning new environments instead of back/restore. Is there any way through ARM templates or Powershell to clone an AppService under one subscription to another subscription under the same Tenant?

Upvotes: 0

Views: 3705

Answers (1)

Doris Lv
Doris Lv

Reputation: 3398

Of course you could do it with ARM templates:

  1. Export template from the web app under your source subscription and deploy it to another subscription. enter image description here

  1. Here is an official tutorial about Move to different subscription under one tenant. You could clone your web app and move one of them to another subscription. enter image description here

  1. You could backup your website content, download from storage account, and deploy to another subscription.

Upvotes: 1

Related Questions