You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
redis_snapshot_window = try(each.value.redis_snapshot_window, "06:30-07:30") # "The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster."
38
-
redis_version = try(each.value.redis_version, "3.2.10") # "Whether to enable encryption in transit. Requires 3.2.6 or >=4.0 redis_version"
38
+
engine_version = try(each.value.engine_version, "3.2.10") # "Whether to enable encryption in transit. Requires 3.2.6 or >=4.0 engine_version"
39
39
snapshot_arns = try(each.value.snapshot_arns, []) # "A single-element string list containing an Amazon Resource Name (ARN) of a Redis RDB snapshot file stored in Amazon S3. Example: arn:aws:s3:::my_bucket/snapshot1.rdb"
40
40
snapshot_name = try(each.value.snapshot_name, "") # " The name of a snapshot from which to restore data into the new node group. Changing the snapshot_name forces a new resource"
error_message="Only 'redis' or 'valkey' is supported."
120
+
}
121
+
}
122
+
123
+
variable"engine_version" {
115
124
description="Redis version to use, defaults to 3.2.10"
116
125
type=string
117
126
default="6.2"
118
127
}
119
128
120
-
121
129
variable"redis_parameters" {
122
130
description="additional parameters modifyed in parameter group"
123
131
type=list(map(any))
124
132
default=[]
125
133
}
126
134
127
-
variable"redis_maintenance_window" {
135
+
variable"maintenance_window" {
128
136
description="Specifies the weekly time range for when maintenance on the cache cluster is performed. The format is ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period"
129
137
type=string
130
138
default="fri:08:00-fri:09:00"
131
139
}
132
140
133
-
variable"redis_snapshot_window" {
141
+
variable"snapshot_window" {
134
142
description="The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster. The minimum snapshot window is a 60 minute period"
135
143
type=string
136
144
default="06:30-07:30"
137
145
}
138
146
139
-
variable"redis_snapshot_retention_limit" {
147
+
variable"snapshot_retention_limit" {
140
148
description="The 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 SnapshotRetentionLimit is set to zero (0), backups are turned off. Please note that setting a snapshot_retention_limit is not supported on cache.t1.micro or cache.t2.* cache nodes"
0 commit comments