Skip to content

Instantly share code, notes, and snippets.

@prombouts
Created September 12, 2017 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prombouts/f541e53fecc95a95d0f8940710cd15b7 to your computer and use it in GitHub Desktop.
Save prombouts/f541e53fecc95a95d0f8940710cd15b7 to your computer and use it in GitHub Desktop.
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"_artifactsLocation": {
"type": "string"
},
"_artifactsLocationSasToken": {
"type": "securestring"
},
"configurationParameters": {
"type": "object"
}
},
"variables": {},
"resources": [
{
"comments": "Logic App One",
"apiVersion": "2016-09-01",
"name": "LogicAppOne",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(parameters('_artifactsLocation'),'/ResourceApps/LogicAppOne.json', parameters('_artifactsLocationSasToken'))]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"configurationParameters": {
"value": "[parameters('configurationParameters')]"
}
}
}
},
{
"comments": "Logic App Two",
"apiVersion": "2016-09-01",
"name": "LogicAppTwo",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(parameters('_artifactsLocation'),'/ResourceApps/LogicAppTwo.json', parameters('_artifactsLocationSasToken'))]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"configurationParameters": {
"value": "[parameters('configurationParameters')]"
}
}
}
}
],
"outputs": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment