forked from azavea/terraform-aws-redis-elasticache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (37 loc) · 723 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
variable "project" {
default = "Unknown"
}
variable "environment" {
default = "Unknown"
}
variable "vpc_id" {}
variable "cache_identifier" {}
variable "parameter_group" {
default = "default.redis3.2"
}
variable "subnet_group" {}
variable "maintenance_window" {}
variable "desired_clusters" {
default = "1"
}
variable "instance_type" {
default = "cache.t2.micro"
}
variable "engine_version" {
default = "3.2.4"
}
variable "automatic_failover_enabled" {
default = false
}
variable "owner" {}
variable "notification_topic_arn" {}
variable "alarm_cpu_threshold" {
default = "75"
}
variable "alarm_memory_threshold" {
# 10MB
default = "10000000"
}
variable "alarm_actions" {
type = "list"
}