May 2019
Beginner to intermediate
456 pages
10h 37m
English
Azure Resource manager templates are simple JSON files that can be used to deploy one or many resources at once. A bare-minimum ARM template is made up of the following structure:

We will create an ARM template to provision the SQL Server on Azure:
Let's quickly go through what we are doing in the sql.deploy.json ARM template. First, in the parameters section, we declared a few parameters:
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", ...Read now
Unlock full access