Skip to content

Commit a6c541e

Browse files
committed
chore: revert to t3.small after Week 11 testing
1 parent 24fe4e2 commit a6c541e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

infra/terraform/eks.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ resource "aws_eks_cluster" "crms" {
7575
}
7676

7777

78-
# EKS Node Group — t3.medium for cost saving
78+
# EKS Node Group — t3.small for cost saving
7979
resource "aws_eks_node_group" "crms" {
8080
cluster_name = aws_eks_cluster.crms.name
8181
node_group_name = "${var.project_name}-${var.environment}-nodes"
8282
node_role_arn = aws_iam_role.eks_nodes.arn
8383
subnet_ids = aws_subnet.public[*].id
8484

85-
instance_types = ["t3.medium"]
85+
instance_types = ["t3.small"]
8686

8787
scaling_config {
8888
desired_size = 1

0 commit comments

Comments
 (0)