Skip to content

Commit e54c287

Browse files
committed
Add snapshot name argument
1 parent fd6ed62 commit e54c287

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ resource "aws_elasticache_replication_group" "default" {
9797
transit_encryption_enabled = var.transit_encryption_enabled
9898
kms_key_id = var.at_rest_encryption_enabled ? var.kms_key_id : null
9999
snapshot_arns = var.snapshot_arns
100+
snapshot_name = var.snapshot_name
100101
snapshot_window = var.snapshot_window
101102
snapshot_retention_limit = var.snapshot_retention_limit
102103
apply_immediately = var.apply_immediately

variables.tf

+8-2
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,12 @@ variable "snapshot_arns" {
181181
default = []
182182
}
183183

184+
variable "snapshot_name" {
185+
type = string
186+
description = "(Optional) The name of a snapshot from which to restore data into the new node group. Changing the snapshot_name forces a new resource."
187+
default = null
188+
}
189+
184190
variable "snapshot_window" {
185191
type = string
186192
description = "The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster."
@@ -217,8 +223,8 @@ variable "cloudwatch_metric_alarms_enabled" {
217223
default = false
218224
}
219225

220-
variable egress_cidr_blocks {
221-
type = list
226+
variable "egress_cidr_blocks" {
227+
type = list(string)
222228
default = ["0.0.0.0/0"]
223229
description = "Outbound traffic address"
224230
}

0 commit comments

Comments
 (0)