Skip to content

Commit

Permalink
Changed SKU parameters to be camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
sc-dmitrykostenko committed Jan 28, 2017
1 parent df31b96 commit 8aae155
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Sitecore 8.2.1/xdb/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@
"type": "securestring",
"minLength": 32
},
"sitecore.sku" : {
"sitecoreSKU" : {
"type" : "string",
"defaultValue": "xDB1",
"allowedValues": [
Expand All @@ -286,7 +286,7 @@
"description" : "Sitecore SKU controls the sizes and service levels of the provisioned resources"
}
},
"sitecore.skumap" : {
"skuMap" : {
"type" : "secureObject",
"defaultValue": {
"xDB1": {
Expand Down Expand Up @@ -322,7 +322,7 @@
"SkuName": "[parameters('searchservice.skuname')]",
"Partitions" : "[parameters('searchservice.partitioncount')]",
"Replicas" : "[parameters('searchservice.replicacount')]"
},
}
},
"xDB2": {
"PrcHostingPlan" : {
Expand Down Expand Up @@ -468,7 +468,7 @@
},
"resourceSizes" : {
"type" : "object",
"defaultValue": "[parameters('sitecore.skumap')[parameters('sitecore.sku')]]"
"defaultValue": "[parameters('skuMap')[parameters('sitecoreSKU')]]"
}
},
"resources": [
Expand Down
2 changes: 1 addition & 1 deletion Sitecore 8.2.1/xdb/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"licenseXml": {
"value": ""
},
"sitecore.sku" : {
"sitecoreSKU" : {
"value" : ""
}
}
6 changes: 3 additions & 3 deletions Sitecore 8.2.1/xm/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
"minLength": 8,
"maxLength": 128
},
"sitecore.sku" : {
"sitecoreSKU" : {
"type" : "string",
"defaultValue": "xM1",
"allowedValues": [
Expand All @@ -249,7 +249,7 @@
"description" : "Sitecore SKU controls the sizes and service levels of the provisioned resources"
}
},
"sitecore.skumap": {
"skuMap": {
"type" : "secureObject",
"defaultValue" : {
"xM1": {
Expand Down Expand Up @@ -431,7 +431,7 @@
},
"resourceSizes" : {
"type": "object",
"defaultValue": "[parameters('sitecore.skumap')[parameters('sitecore.sku')]]"
"defaultValue": "[parameters('skuMap')[parameters('sitecoreSKU')]]"
}
},
"resources": [
Expand Down
2 changes: 1 addition & 1 deletion Sitecore 8.2.1/xm/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"licenseXml": {
"value": ""
},
"sitecore.sku" : {
"sitecoreSKU" : {
"value" : ""
}
}
6 changes: 3 additions & 3 deletions Sitecore 8.2.1/xp/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@
"type": "securestring",
"minLength": 32
},
"sitecore.sku" : {
"sitecoreSKU" : {
"type" : "string",
"defaultValue": "xP1",
"allowedValues": [
Expand All @@ -396,7 +396,7 @@
"description" : "Sitecore SKU controls the sizes and service levels of the provisioned resources"
}
},
"sitecore.skumap": {
"skuMap": {
"type" : "secureObject",
"defaultValue" : {
"xP1": {
Expand Down Expand Up @@ -643,7 +643,7 @@
},
"resourceSizes" : {
"type" :"object",
"defaultValue": "[parameters('sitecore.skumap')[parameters('sitecore.sku')]]"
"defaultValue": "[parameters('skuMap')[parameters('sitecoreSKU')]]"
}
},
"resources": [
Expand Down
2 changes: 1 addition & 1 deletion Sitecore 8.2.1/xp/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"licenseXml": {
"value": ""
},
"sitecore.sku": {
"sitecoreSKU": {
"value": ""
}
}

0 comments on commit 8aae155

Please sign in to comment.