Skip to content

Commit 2e3a6a3

Browse files
authored
Merge pull request #24 from lgallard/fix/warm-node
Fix/warm node
2 parents 6bbc370 + 3e66f74 commit 2e3a6a3

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.6.0 (October 28, 2020)
2+
3+
FIXES:
4+
5+
* Change default values for warm storage
6+
17
## 0.6.0 (October 26, 2020)
28

39
ENHANCEMENTS:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ module "aws_es" {
121121
| cluster\_config\_dedicated\_master\_type | Instance type of the dedicated master nodes in the cluster | `string` | `"r5.large.elasticsearch"` | no |
122122
| cluster\_config\_instance\_count | Number of instances in the cluster | `number` | `3` | no |
123123
| cluster\_config\_instance\_type | Instance type of data nodes in the cluster | `string` | `"r5.large.elasticsearch"` | no |
124-
| cluster\_config\_warm\_count | The number of warm nodes in the cluster | `number` | `2` | no |
124+
| cluster\_config\_warm\_count | The number of warm nodes in the cluster | `number` | n/a | no |
125125
| cluster\_config\_warm\_enabled | Indicates whether to enable warm storage | `bool` | `false` | no |
126-
| cluster\_config\_warm\_type | The instance type for the Elasticsearch cluster's warm nodes | `string` | `"ultrawarm1.medium.elasticsearch"` | no |
126+
| cluster\_config\_warm\_type | The instance type for the Elasticsearch cluster's warm nodes | `string` | n/a | no |
127127
| cluster\_config\_zone\_awareness\_enabled | Indicates whether zone awareness is enabled. To enable awareness with three Availability Zones | `bool` | `false` | no |
128128
| cognito\_options | Options for Amazon Cognito Authentication for Kibana | `map` | `{}` | no |
129129
| cognito\_options\_enabled | Specifies whether Amazon Cognito authentication with Kibana is enabled or not | `bool` | `false` | no |

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,13 @@ variable "cluster_config_warm_enabled" {
202202
variable "cluster_config_warm_count" {
203203
description = "The number of warm nodes in the cluster"
204204
type = number
205-
default = 2
205+
default = null
206206
}
207207

208208
variable "cluster_config_warm_type" {
209209
description = "The instance type for the Elasticsearch cluster's warm nodes"
210210
type = string
211-
default = "ultrawarm1.medium.elasticsearch"
211+
default = null
212212
}
213213

214214
# snapshot_options

0 commit comments

Comments
 (0)