Skip to content

Commit

Permalink
Remove cluster-enabled from parameters
Browse files Browse the repository at this point in the history
Continuing my whack-a-mole process of trying to get a Terraform plan
that will apply from
#1443.

It turns out we don't want to set cluster enabled to yes and the default
option is no, so we shouldn't have been trying to change it.

I've been through and compared all the other parameters and they seem to
match.
  • Loading branch information
kevindew committed Sep 12, 2024
1 parent 3666a0b commit cac1dc8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions terraform/deployments/chat/redis.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ resource "aws_elasticache_parameter_group" "chat_redis_cluster" {
name = local.chat_redis_name
family = "redis7"

parameter {
name = "cluster-enabled"
value = "yes"
}

parameter {
name = "maxmemory-policy"
value = "noeviction"
Expand Down

0 comments on commit cac1dc8

Please sign in to comment.