Skip to content

Commit

Permalink
Update elasticache terraform to remove quotes at parameter group name…
Browse files Browse the repository at this point in the history
… elasticache
  • Loading branch information
cduhn17 committed Jul 22, 2024
1 parent fdc589b commit 5032ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/elasticache.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5032ce8

Please sign in to comment.