From 7dcce13696bbbfd8173023800bce0537efbcdffa Mon Sep 17 00:00:00 2001 From: TAKANO Mitsuhiro Date: Tue, 27 Feb 2024 16:22:58 +0900 Subject: [PATCH] ElastiCache: Change `node_type` from `cache.t3.micro` to `cache.t4g.small` --- elasticache.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticache.tf b/elasticache.tf index 55b6073..000d25a 100644 --- a/elasticache.tf +++ b/elasticache.tf @@ -26,7 +26,7 @@ resource "aws_elasticache_cluster" "this" { cluster_id = "${var.prefix}-elasticache-cluster-${var.environment}" engine = "memcached" engine_version = "1.6.22" - node_type = "cache.t3.micro" + node_type = "cache.t4g.small" num_cache_nodes = 2 parameter_group_name = "default.memcached1.6" port = 11211