-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
108 lines (84 loc) · 1.44 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
variable "aws" {
type = any
default = {}
}
variable "eks" {
type = any
default = {}
}
variable "env" {
}
variable "redis_id" {
default = "redis"
}
variable "redis_engine" {
default = "redis"
}
variable "redis_engine_version" {
default = "5.0.5"
}
variable "redis_automatic_failover_enabled" {
default = false
}
variable "redis_node_type" {
default = "cache.t2.medium"
}
variable "redis_number_cache_clusters" {
default = 1
}
variable "redis_parameter_group_name" {
default = "default.redis5.0"
}
variable "redis_port" {
default = 6379
}
variable "redis_security_group_ids" {
type = list
default = []
}
variable "redis_at_rest_encryption_enabled" {
default = true
}
variable "redis_transit_encryption_enabled" {
default = true
}
variable "redis_snapshot_window" {
default = "02:00-04:00"
}
variable "redis_maintenance_window" {
default = "sun:00:00-sun:02:00"
}
variable "redis_snapshot_retention_limit" {
default = null
}
variable "redis_apply_immediately" {
default = false
}
variable "tags" {
type = any
default = {}
}
variable "redis_cluster_mode" {
type = any
default = {
enabled = false
}
}
variable "redis_azs" {
default = null
type = list
}
variable "inject_secret_into_ns" {
default = []
type = list
}
variable "redis_exporter" {
type = any
}
variable "redis_token_enabled" {
default = false
}
variable "redis_subnets" {
type = list
default = []
}