Skip to Main Content
Azure Resource Manager Templates Quick Start Guide
book

Azure Resource Manager Templates Quick Start Guide

by Ritesh Modi
February 2019
Intermediate to advanced content levelIntermediate to advanced
234 pages
5h 42m
English
Packt Publishing
Content preview from Azure Resource Manager Templates Quick Start Guide

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", ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Implementing Azure: Putting Modern DevOps to Use

Implementing Azure: Putting Modern DevOps to Use

Florian Klaffenbach, Oliver Michalski, Markus Klein, Mohamed Wali
Understanding Azure Monitoring: Includes IaaS and PaaS Scenarios

Understanding Azure Monitoring: Includes IaaS and PaaS Scenarios

Bapi Chakraborty, Shijimol Ambi Karthikeyan

Publisher Resources

ISBN: 9781789803235Supplemental Content