apwestgarth I attempted to scale up an app service plan to P2V3 using PowerShell, and it scaled to P2 (V1) instead.
Set-AzAppServicePlan -ResourceGroupName $usedPlan.ResourceGroup -Name $usedPlan.Name -Tier PremiumV3 -WorkerSize Medium
I then tried in the portal and got this error:
The pricing tier 'PremiumV3' is not allowed in this resource group. Use this link to learn more: http://go.microsoft.com/fwlink/?LinkId=825764
I see some https://docs.microsoft.com/en-us/azure/app-service/app-service-configure-premium-tier#scale-up-from-an-unsupported-resource-group-and-region-combination in the documentation about moving to a new plan, but clicking the Clone button in the portal for a few hundred apps is not really feasible. Are there any other options?
Thanks!