I have a resourcegroup in Microsoft Azure with some resources on it, nothing strange, some VMs, databases, storage accounts, and a virtual network. So far no web apps or app service plans.
I am trying to add a app service plan with a simple powershell command:
New-AzureRmAppServicePlan -Name "testsvcplan" -Location "North Europe"
-ResourceGroupName "mygroup" -Tier Free
which results in the following error:
Cannot find Web space mygroup-NorthEuropewebspace for subscription xxx-xxx-xxx.
Getting the same error when trying to add an app service plan through the portal and cannot find much info about this error or Azure Web space. Although it works fine when using other resourcegroups.
What is a Azure web space and what could cause this error with my resource group?
So, after almost two weeks of help from Microsoft Azure support, they cannot say why my resourcegroup is missing it's webspace. We ended up moving resources to another resource group using the following guide instead.
Now I know this isn't really an answer. But if anyone could be able to solve it, Microsoft Azure support should, but it seems like a dead end.