Skip to content

Commit

Permalink
fix(redis): increasing the node type and max connections (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
geekbrother authored Aug 27, 2024
1 parent ca7339d commit 9fe1d73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/ecs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ variable "log_level" {
variable "redis_max_connections" {
description = "The maximum number of connections to the Redis server"
type = number
default = 128
default = 512
}

variable "project_cache_endpoint_read" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/redis/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
variable "node_type" {
description = "The instance type to use for the database nodes"
type = string
default = "cache.t4g.micro" # https://aws.amazon.com/elasticache/pricing/?nc=sn&loc=5#On-demand_nodes
default = "cache.t4g.small" # https://aws.amazon.com/elasticache/pricing/?nc=sn&loc=5#On-demand_nodes
}

variable "num_cache_nodes" {
Expand Down

0 comments on commit 9fe1d73

Please sign in to comment.