Skip to content

Commit de942eb

Browse files
fix: update Redis parameter group for new engine (#1217)
1 parent 1c52f4c commit de942eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws/redis/redis.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ resource "aws_elasticache_replication_group" "redis" {
1212
node_type = "cache.t2.micro"
1313
num_cache_clusters = var.env == "development" ? 1 : 2
1414
engine_version = "7.1"
15-
parameter_group_name = "default.redis6.x"
15+
parameter_group_name = "default.redis7"
1616
port = 6379
1717
multi_az_enabled = var.env != "development"
1818
subnet_group_name = aws_elasticache_subnet_group.redis.name
@@ -22,4 +22,4 @@ resource "aws_elasticache_replication_group" "redis" {
2222
resource "aws_elasticache_subnet_group" "redis" {
2323
name = "redis-subnet-group"
2424
subnet_ids = var.private_subnet_ids
25-
}
25+
}

0 commit comments

Comments
 (0)