From 8772b30edf28a745f46afd352b4bc5672383a809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paulo=20J=C3=BAnior=20do=20Nascimento=20Lima?= <73200237+paulolima-gb@users.noreply.github.com> Date: Mon, 29 May 2023 11:46:10 -0300 Subject: [PATCH] Update main.tf chore: change removed parameters --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 6c09c9b..ab96ce9 100644 --- a/main.tf +++ b/main.tf @@ -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 @@ -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)