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
Copy file name to clipboardExpand all lines: variables.tf
+18
Original file line number
Diff line number
Diff line change
@@ -248,3 +248,21 @@ variable "user_group_id" {
248
248
description="The ID of the user group Elasticache"
249
249
default=""
250
250
}
251
+
252
+
variable"snapshot_window" {
253
+
type=string
254
+
description="The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group (shard) specified by SnapshottingClusterId"
255
+
default="00:00-01:00"
256
+
}
257
+
258
+
variable"snapshot_arns" {
259
+
type=list(string)
260
+
description="The ARN of the snapshot from which to restore data into the new node group (shard)"
261
+
default=[]
262
+
}
263
+
264
+
variable"snapshot_name" {
265
+
type=string
266
+
description="The name of the snapshot from which to restore data into the new node group (shard)"
0 commit comments