Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
chore: change removed parameters
  • Loading branch information
pjuniorlima authored May 29, 2023
1 parent a2672e7 commit 8772b30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "aws_elasticache_replication_group" "default" {
# If automatic_failover_enabled is true, the value of this parameter must be at least 2.
# The maximum permitted value for number_cache_clusters is 6 (1 primary plus 5 replicas).
# https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.RedisReplGrps.html
number_cache_clusters = var.number_cache_clusters
num_cache_clusters = var.number_cache_clusters

# The compute and memory capacity of the nodes in the node group (shard).
# Generally speaking, the current generation types provide more memory and computational power at lower cost
Expand Down Expand Up @@ -89,7 +89,7 @@ resource "aws_elasticache_replication_group" "default" {
apply_immediately = var.apply_immediately

# A user-created description for the replication group.
replication_group_description = var.description
description = var.description

# A mapping of tags to assign to the resource.
tags = merge({ "Name" = var.name }, var.tags)
Expand Down

0 comments on commit 8772b30

Please sign in to comment.