The ARM template that can include another ARM template by the "includes" directive
I hope the "include" directive will be usable in ARM template as followings.
```
{
"includes": [
{
"templateUrl": "<a rel="nofollow noreferrer" href="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/HEAD/101-documentdb-account-create/azuredeploy.json"">https://raw.githubusercontent.com/Azure/azure-quickstart-templates/HEAD/101-documentdb-account-create/azuredeploy.json"</a>,
"parameters": {
"databaseAccountName": "mydocumentdb"
},
"metadata": {
"description": "Deploy the DocumentDB as 'mydocumentdb'"
}
},
{
"templateUrl": "<a rel="nofollow noreferrer" href="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/HEAD/101-function-app-create-dynamic/azuredeploy.json"">https://raw.githubusercontent.com/Azure/azure-quickstart-templates/HEAD/101-function-app-create-dynamic/azuredeploy.json"</a>,
"parameters": {
"appName": "myfunc",
},
"metadata": {
"description": "Deploy the Function Apps as 'myfunc'"
}
}
],
"resources": [
...
],
...
}
```
1
vote