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", ...