January 2019
Intermediate to advanced
536 pages
14h 14m
English
Linked templates are templates that invoke external templates. External templates are stored in different ARM template files. An example of linked templates is shown next.
"resources": [ { "apiVersion": "2017-05-10", "name": "linkedTemplate", "type": "Microsoft.Resources/deployments", "properties": { "mode": "Incremental", "templateLink": { "uri":"https://mystorageaccount.blob.core.windows.net/AzureTemplates/newStorageAccount.json", "contentVersion":"1.0.0.0" }, "parametersLink": { "uri":"https://mystorageaccount.blob.core.windows.net/AzureTemplates/newStorageAccount.parameters.json", "contentVersion":"1.0.0.0" } } }]
Important additional properties in this template compared to the previous template are templateLink and ...
Read now
Unlock full access