June 2020
Intermediate to advanced
432 pages
11h 57m
English
One way for specifying the parameter values when deploying a template is through a variable file. Often, a single template is accompanied by more than one parameter file, for example, one for test and one for production. The JSON for a parameter file appears as follows:
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "exampleParameter": { "value": "exampleValue" } }}
Just like an ARM template, every parameter file is a JSON object with mandatory $schema and contentVersion properties. The third property parameter is used to specify one or more parameter values. For each parameter, specify its name as the key and an object as the value. ...
Read now
Unlock full access