-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
71 lines (52 loc) · 931 Bytes
/
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
70
71
variable "ebs_volume_size" {
default = "10"
}
// Required
variable "name" {}
variable "vpc_id" {}
variable "subnet_ids" {
type = "list"
}
# variable "zone_id" {}
// Optional
variable "elasticsearch_version" {
default = "5.5"
}
variable "itype" {
default = "t2.medium.elasticsearch"
}
variable "icount" {
default = 1
}
variable "dedicated_master" {
default = false
}
variable "mtype" {
default = ""
}
variable "mcount" {
default = 0
}
variable "zone_awareness" {
default = false
}
variable "ingress_allow_security_groups" {
default = []
}
variable "ingress_allow_cidr_blocks" {
default = []
}
variable "rest_action_multi_allow_explicit_index" {
default = "true"
}
variable "indices_fielddata_cache_size" {
default = ""
}
variable "indices_query_bool_max_clause_count" {
default = 1024
}
variable "snapshot_start" {
default = 0
}
variable "aws_region" {}
variable "aws_account_id" {}