Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PRSD-751: Changes Redis version to 7.1 #32

Merged
merged 1 commit into from
Feb 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/modules/elasticache/redis.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resource "aws_elasticache_replication_group" "main" {
automatic_failover_enabled = var.highly_available ? true : false
description = "Redis replication group, consisting of a single node, or a primary node and a replica."
engine = "redis"
engine_version = "7.4" # Unlike RDS, this should not cause state drift
engine_version = "7.1" # Unlike RDS, this should not cause state drift
final_snapshot_identifier = "${var.environment_name}-database-final-snapshot"
maintenance_window = var.maintenance_window
multi_az_enabled = var.highly_available ? true : false
Expand Down
Loading