Skip to content

Instantly share code, notes, and snippets.

@morsh
Created March 6, 2016 14:07
Show Gist options
  • Save morsh/f1499fa10b473bc8f201 to your computer and use it in GitHub Desktop.
Save morsh/f1499fa10b473bc8f201 to your computer and use it in GitHub Desktop.
ARM CI - Base
{
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {...},
"resources": [
{
"apiVersion": "2015-04-01",
"name": "[parameters('hostingPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[parameters('siteLocation')]",
"properties": {
"name": "[parameters('hostingPlanName')]",
"sku": "[parameters('sku')]",
"workerSize": "[parameters('workerSize')]",
"numberOfWorkers": 1
}
},
{
"apiVersion": "2015-04-01",
"name": "[parameters('queryIDSiteName')]",
"type": "Microsoft.Web/sites",
"location": "[parameters('siteLocation')]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]"
],
"properties": {
"serverFarmId": "[parameters('hostingPlanName')]"
},
"resources": [
{
"apiVersion": "2015-04-01",
"name": "appsettings",
"type": "config",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', parameters('queryIDSiteName'))]"
],
"properties": {
"WEBSITE_NODE_DEFAULT_VERSION": "4.2.3",
"ENV_VAR_1": "val 1",
"ENV_VAR_2": "val 2"
}
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment