-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
280 lines (235 loc) · 7.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
variable "enabled" {
description = "Set to false to prevent the module from creating any resources"
type = bool
default = true
}
variable "replication_enabled" {
description = "Set to false to diable replication in redis cluster"
type = bool
default = false
}
variable "cluster_mode_enabled" {
description = "Set to false to diable cluster module"
type = bool
default = false
}
variable "name" {
description = "Name of the application"
type = string
default = "value"
}
variable "tags" {
description = "Additional tags (_e.g._ map(\"BusinessUnit\",\"ABC\")"
type = map(string)
default = {}
}
variable "subnets" {
description = "AWS subnet ids"
type = list(string)
default = []
}
variable "maintenance_window" {
description = "Maintenance window"
type = string
default = "wed:03:00-wed:04:00"
}
variable "cluster_size" {
description = "Cluster size"
type = number
default = 1
}
variable "instance_type" {
description = "Elastic cache instance type"
type = string
default = "cache.t2.micro"
}
variable "engine_version" {
description = "Redis engine version. https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/supported-engine-versions.html"
type = string
default = "7.0"
}
variable "alarm_cpu_threshold_percent" {
description = "CPU threshold alarm level"
type = number
default = 75
}
variable "alarm_ecpu_threshold_percent" {
description = "ECPU threshold alarm level for elasticache serverless"
type = number
default = 75
}
variable "alarm_memory_threshold_bytes" {
description = "Alarm memory threshold bytes"
type = number
default = 10000000 # 10MB
}
variable "alarm_data_threshold_percent" {
description = "Data threshold alarm level for elasticache serverless"
type = number
default = 75
}
variable "notification_topic_arn" {
description = "ARN of an SNS topic to send ElastiCache notifications"
type = string
default = ""
}
variable "alarm_actions" {
description = "The list of actions to execute when this alarm transitions into an ALARM state from any other state."
type = list(string)
default = []
}
variable "ok_actions" {
description = "The list of actions to execute when this alarm transitions into an OK state from any other state."
type = list(string)
default = []
}
variable "apply_immediately" {
description = "Specifies whether any database modifications are applied immediately, or during the next maintenance window"
type = bool
default = true
}
variable "port" {
description = "Redis port"
type = number
default = 6379
}
variable "security_groups" {
description = "List of Security Group IDs to place the cluster into"
type = list(string)
default = []
}
variable "subnet_group_name" {
description = "Subnet group name for the ElastiCache instance"
type = string
default = ""
}
variable "elasticache_parameter_group_family" {
description = "ElastiCache parameter group family"
type = string
default = "redis7"
}
variable "replication_group_id" {
description = "ElastiCache replication_group_id"
type = string
default = ""
}
variable "parameters" {
description = "A list of Redis parameters to apply. Note that parameters may differ from one Redis family to another"
type = list(object({
name = string
value = string
}))
default = []
}
variable "cluster_id" {
description = "Cluster ID"
type = string
default = null
}
variable "create_elasticache_subnet_group" {
description = "Create Elasticache Subnet Group"
type = bool
default = true
}
variable "preferred_cache_cluster_azs" {
description = "List of EC2 availability zones in which the replication group's cache clusters will be created. The order of the availability zones in the list is considered. The first item in the list will be the primary node. Ignored when updating"
type = list(string)
default = [
"ap-southeast-1a",
"ap-southeast-1b",
]
}
variable "parameter_group_name" {
description = "Existing Parameter Group name"
type = string
default = ""
}
variable "snapshot_retention_limit" {
description = "Number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, then a snapshot that was taken today will be retained for 5 days before being deleted. If the value of snapshot_retention_limit is set to zero (0), backups are turned off. Please note that setting a snapshot_retention_limit is not supported on cache.t1.micro cache nodes"
type = number
default = 5
}
variable "transit_encryption_enabled" {
description = "Whether to enable encryption in transit"
type = string
default = true
}
variable "auth_token" {
description = "Password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`"
type = string
default = null
}
variable "at_rest_encryption_enabled" {
description = "Whether to enable encryption at rest"
type = string
default = true
}
variable "kms_key_id" {
description = "The ARN of the key that you wish to use if encrypting at rest. If not supplied, uses service managed encryption. Can be specified only if `at_rest_encryption_enabled = true`"
type = string
default = null
}
variable "num_node_groups" {
description = "Number of node groups (shards) for this Redis replication group. Changing this number will trigger an online resizing operation before other settings modifications. Required unless `global_replication_group_id` is set"
type = number
default = 2
}
variable "replicas_per_node_group" {
description = "Number of replica nodes in each node group. Valid values are 0 to 5. Changing this number will trigger an online resizing operation before other settings modifications."
type = number
default = 1
}
# ElastiCache Serverless
variable "use_serverless" {
description = "Use serverless ElastiCache service"
type = bool
default = false
}
variable "max_data_storage" {
type = number
description = "The maximun cached data capacity of the Serverless Cache in GB"
default = 10
validation {
condition = var.max_data_storage >= 1 && var.max_data_storage <= 5000
error_message = "The max_data_storage in GB value must be between 1 and 5,000."
}
}
variable "max_ecpu_per_second" {
type = number
description = "The maximum ECPU per second of the Serverless Cache"
default = 1000
validation {
condition = var.max_ecpu_per_second >= 1000 && var.max_ecpu_per_second <= 15000000
error_message = "The max_ecpu_per_second value must be between 1,000 and 15,000,000."
}
}
variable "daily_snapshot_time" {
type = string
description = "The daily time range (in UTC) during which the service takes automatic snapshot of the Serverless Cache"
default = "18:00"
}
variable "snapshot_arns_to_restore" {
type = list(string)
description = "The ARN's of snapshot to restore Serverless Cache"
default = []
}
variable "user_group_id" {
type = string
description = "The ID of the user group Elasticache"
default = ""
}
variable "snapshot_window" {
type = string
description = "The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group (shard) specified by SnapshottingClusterId"
default = "00:00-01:00"
}
variable "snapshot_arns" {
type = list(string)
description = "The ARN of the snapshot from which to restore data into the new node group (shard)"
default = []
}
variable "snapshot_name" {
type = string
description = "The name of the snapshot from which to restore data into the new node group (shard)"
default = ""
}