An ARM template allows you to reference another "linked" ARM template using the "templateLink" property. I would like to do this using a raw git uri in Azure DevOps (VSTS). I can do this with github as shown below:
"resources": [
{
"apiVersion": "2017-05-10",
"name": "linkedTemplate",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "incremental",
"templateLink": {
"uri": "https://raw.githubusercontent.com/lw/BaseARMTemplates/master/ARM.json"",
"contentVersion": "1.0.0.0"
},
}
}
]