psmitty
psmitty

Reputation: 23

Azure Resource Group Template for App Services "Mobile App"

I'm trying to find the correct template to use for the App Service "Mobile App" for deployment via New-AzureRmResourceGroupDeployment

I've had a look at the template for Web App but doesn't appear to be anything to specify a type or kind for Mobile App https://github.com/Azure/azure-resource-manager-schemas/blob/master/schemas/2015-08-01/Microsoft.Web.json

Upvotes: 2

Views: 192

Answers (1)

bmoore-msft
bmoore-msft

Reputation: 8717

You can just add the "kind" property to a website resource, e.g.

       {
        "name": "[parameters('siteName')]",
        "type": "Microsoft.Web/sites",
        "location": "[resourceGroup().location]",
        "apiVersion": "2014-06-01",
        "kind": "mobileapp" ...

Upvotes: 1

Related Questions