-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opensearch-variables.tf
69 lines (58 loc) · 1.69 KB
/
opensearch-variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "es_application_name" {
type = string
description = "Unique name for the opensearch instance"
default = ""
}
variable "es_instance_count" {
type = number
description = "Number of instances in the cluster"
default = 2
}
variable "es_dedicated_master_type" {
type = string
description = "Instance type of the dedicated main nodes in the cluster."
}
variable "es_instance_type" {
type = string
description = "Instance type of data nodes in the cluster."
default = ""
}
variable "es_volume_type" {
type = string
description = "Type of EBS volumes attached to data nodes."
default = "gp3"
}
variable "es_volume_size" {
type = number
description = "Size of EBS volumes attached to data nodes (in GiB)."
default = 100
}
variable "es_ebs_iops" {
type = number
description = "Baseline input/output (I/O) performance of EBS volumes attached to data nodes"
default = 3000
}
variable "es_engine_version" {
type = string
description = "Version of Elasticsearch to deploy."
}
variable "es_admin_principals" {
description = "Principals allowed to peform admin actions (default: current account)"
type = list(string)
default = null
}
variable "es_read_principals" {
description = "Principals allowed to read the secret (default: current account)"
type = list(string)
default = null
}
variable "elasticsearch_enabled" {
description = "Set to true to enable creation of the Elasticsearch database"
type = bool
default = false
}
variable "tags" {
type = map(string)
description = "Tags to apply to the instance in AWS"
default = {}
}