Azure App Services template

The parameters for the webappsimple-1.0.0.0 ARM template are as follows:

 "parameters": {    "appServicePlanName": { "type": "string" },    "diagnosticlevel": {      "type": "string",      "allowedValues": [ "error", "warning", "information", "verbose" ],      "defaultValue": "warning"    },    "customTags": { "type": "object" },    "webAppName": { "type": "string" },    "serverName": { "type": "string" },    "databaseName": { "type": "string" },    "userID": { "type": "string" },    "administratorLoginPassword": { "type": "securestring" }  },

And the resources for this template include a single resource of type Microsoft.Web/sites.

This resource is responsible for creating an App Service web app. The code for this resource is listed next:

      { "type": "Microsoft.Web/sites", ...

Get Azure Resource Manager Templates Quick Start Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.