-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
66 lines (54 loc) · 1.25 KB
/
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
variable "name" {
description = "Name prefix for all EFS resources."
default = "App"
}
variable "azs" {
description = "A list of availability zones to associate with."
type = list
default = []
}
variable "access_sg_ids" {
description = "A list of security groups Ids to grant access."
type = list
default = []
}
variable "vpc_id" {
description = "VPC Id where the EFS resources will be deployed."
}
variable "newbits" {
description = "newbits in the cidrsubnet function."
default = 26
}
variable "netnum" {
description = "netnum in the cidrsubnet function."
default = 0
}
variable "access_cidrs" {
description = "A list of Subnets CIDR Blocks to grant access"
type = list
default = []
}
variable "tags" {
description = "A mapping of tags to assign to the resource."
default = {}
}
variable "es_version" {
description = "Version"
default = "6.2"
}
variable "storage" {
description = "Storage size"
default = 10
}
variable "type" {
description = "Instance type"
default = "t2.small.elasticsearch"
}
variable "instances" {
description = "Instance count"
default = 1
}
variable "enable_logs" {
description = "Enalbe CloudWatch Logs"
default = false
}