Skip to content

Commit

Permalink
#135382 Added new Application Insights locations support
Browse files Browse the repository at this point in the history
  • Loading branch information
juvchan committed Nov 23, 2016
1 parent ca04cbb commit d1d73f6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
7 changes: 6 additions & 1 deletion Sitecore 8.2.1/xm/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@
"type": "string",
"defaultValue": "[concat(parameters('deploymentId'), '-ai')]"
},
"applicationinsights.location": {
"type": "string",
"defaultValue": "East US",
"allowedValues": [ "East US", "South Central US", "North Europe", "West Europe" ]
},
"cm.hostingplan.skuname": {
"type": "string",
"defaultValue": "S1"
Expand Down Expand Up @@ -528,7 +533,7 @@
"type": "Microsoft.Insights/Components",
"name": "[variables('appInsightsNameTidy')]",
"apiVersion": "[variables('appInsightsApiVersion')]",
"location": "Central US",
"location": "[parameters('applicationinsights.location')]",
"properties": {
"ApplicationId": "[variables('appInsightsNameTidy')]",
"Application_Type": "web"
Expand Down
7 changes: 6 additions & 1 deletion Sitecore 8.2.1/xp/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,11 @@
"type": "string",
"defaultValue": "[concat(parameters('deploymentId'), '-ai')]"
},
"applicationinsights.location": {
"type": "string",
"defaultValue": "East US",
"allowedValues": [ "East US", "South Central US", "North Europe", "West Europe" ]
},
"cm.hostingplan.skuname": {
"type": "string",
"defaultValue": "S1"
Expand Down Expand Up @@ -895,7 +900,7 @@
"type": "Microsoft.Insights/Components",
"name": "[variables('appInsightsNameTidy')]",
"apiVersion": "[variables('appInsightsApiVersion')]",
"location": "Central US",
"location": "[parameters('applicationinsights.location')]",
"properties": {
"ApplicationId": "[variables('appInsightsNameTidy')]",
"Application_Type": "web"
Expand Down
11 changes: 8 additions & 3 deletions Sitecore 8.2.1/xp0/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@
"type": "string",
"defaultValue": "[concat(parameters('deploymentId'), '-ai')]"
},
"applicationinsights.location": {
"type": "string",
"defaultValue": "East US",
"allowedValues": [ "East US", "South Central US", "North Europe", "West Europe" ]
},
"single.hostingplan.skuname": {
"type": "string",
"defaultValue": "S1"
Expand Down Expand Up @@ -195,8 +200,8 @@
},
"sitecore.admin.password": {
"type": "securestring",
"minLength": 8,
"maxLength": 128
"minLength": 8,
"maxLength": 128
}
},
"resources": [
Expand Down Expand Up @@ -416,7 +421,7 @@
"type": "Microsoft.Insights/Components",
"name": "[variables('appInsightsNameTidy')]",
"apiVersion": "[variables('appInsightsApiVersion')]",
"location": "Central US",
"location": "[parameters('applicationinsights.location')]",
"properties": {
"ApplicationId": "[variables('appInsightsNameTidy')]",
"Application_Type": "web"
Expand Down

0 comments on commit d1d73f6

Please sign in to comment.