From 5032ce8a3bd41756329d1aaec821e4e26734aef0 Mon Sep 17 00:00:00 2001 From: cduhn17 Date: Mon, 22 Jul 2024 09:44:01 -0500 Subject: [PATCH] Update elasticache terraform to remove quotes at parameter group name elasticache --- infrastructure/elasticache.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/elasticache.tf b/infrastructure/elasticache.tf index 73fb5624..d9f5ca5c 100644 --- a/infrastructure/elasticache.tf +++ b/infrastructure/elasticache.tf @@ -35,7 +35,7 @@ resource "aws_elasticache_cluster" "crossfeed_vpc_elasticache_cluster" { engine = "redis" node_type = "cache.r7g.xlarge" num_cache_nodes = 1 - parameter_group_name = "aws_elasticache_parameter_group.xfd_redis_group.name" + parameter_group_name = aws_elasticache_parameter_group.xfd_redis_group.name engine_version = "7.1" port = 6379 subnet_group_name = aws_elasticache_subnet_group.crossfeed_vpc.name