File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ resource "aws_elasticache_replication_group" "default" {
97
97
transit_encryption_enabled = var. transit_encryption_enabled
98
98
kms_key_id = var. at_rest_encryption_enabled ? var. kms_key_id : null
99
99
snapshot_arns = var. snapshot_arns
100
+ snapshot_name = var. snapshot_name
100
101
snapshot_window = var. snapshot_window
101
102
snapshot_retention_limit = var. snapshot_retention_limit
102
103
apply_immediately = var. apply_immediately
Original file line number Diff line number Diff line change @@ -181,6 +181,12 @@ variable "snapshot_arns" {
181
181
default = []
182
182
}
183
183
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
+
184
190
variable "snapshot_window" {
185
191
type = string
186
192
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" {
217
223
default = false
218
224
}
219
225
220
- variable egress_cidr_blocks {
221
- type = list
226
+ variable " egress_cidr_blocks" {
227
+ type = list ( string )
222
228
default = [" 0.0.0.0/0" ]
223
229
description = " Outbound traffic address"
224
230
}
You can’t perform that action at this time.
0 commit comments