Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
Add Elasticsearch 2.3.4 and bump Kibana versions
Browse files Browse the repository at this point in the history
Add kibana password as an input to the shieldKibanaServerPwd
  • Loading branch information
russcam committed Jul 9, 2016
1 parent 0103318 commit 12719bc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
11 changes: 7 additions & 4 deletions build/allowedValues.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@
"kibana": "4.2.2"
},
"2.1.2": {
"kibana": "4.3.2"
"kibana": "4.3.3"
},
"2.2.0": {
"kibana": "4.4.1"
"kibana": "4.4.2"
},
"2.3.2": {
"kibana": "4.5.1"
"kibana": "4.5.2"
},
"2.3.3": {
"kibana": "4.5.1"
"kibana": "4.5.2"
},
"2.3.4": {
"kibana": "4.5.2"
}
},
"locations" : [
Expand Down
6 changes: 5 additions & 1 deletion src/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"name": "esVersion",
"type": "Microsoft.Common.DropDown",
"label": "Elasticsearch version",
"defaultValue": "v2.3.3",
"defaultValue": "v2.3.4",
"toolTip": "Choose a version of Elasticsearch.",
"constraints": {
"allowedValues": [
Expand All @@ -76,6 +76,10 @@
{
"label": "v2.3.3",
"value": "2.3.3"
},
{
"label": "v2.3.4",
"value": "2.3.4"
}
]
}
Expand Down
16 changes: 9 additions & 7 deletions src/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
},
"esVersion": {
"type": "string",
"defaultValue": "2.3.3",
"defaultValue": "2.3.4",
"allowedValues": [
"2.0.2",
"2.1.2",
"2.2.0",
"2.3.2",
"2.3.3"
"2.3.3",
"2.3.4"
],
"metadata": {
"description": "Elasticsearch version to install"
Expand Down Expand Up @@ -534,10 +535,11 @@
},
"esToKibanaMapping": {
"2.0.2": "4.2.2",
"2.1.2": "4.3.2",
"2.2.0": "4.4.1",
"2.3.2": "4.5.1",
"2.3.3": "4.5.1"
"2.1.2": "4.3.3",
"2.2.0": "4.4.2",
"2.3.2": "4.5.2",
"2.3.3": "4.5.2",
"2.3.4": "4.5.2"
},
"esSettings": {
"clusterName": "[parameters('esClusterName')]",
Expand All @@ -546,7 +548,7 @@
"shieldAdminPwd": "[parameters('shieldAdminPassword')]",
"shieldReadPwd": "[parameters('shieldReadPassword')]",
"shieldKibanaPwd": "[parameters('shieldKibanaPassword')]",
"shieldKibanaServerPwd": "[uniqueString(resourceGroup().id, deployment().name)]",
"shieldKibanaServerPwd": "[uniqueString(resourceGroup().id, deployment().name, parameters('shieldKibanaPassword'))]",
"kibanaVersion": "[variables('esToKibanaMapping')[parameters('esVersion')]]"
},
"namespacePrefix": "[parameters('vmHostNamePrefix')]",
Expand Down

0 comments on commit 12719bc

Please sign in to comment.