We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24fe4e2 commit a6c541eCopy full SHA for a6c541e
1 file changed
infra/terraform/eks.tf
@@ -75,14 +75,14 @@ resource "aws_eks_cluster" "crms" {
75
}
76
77
78
-# EKS Node Group — t3.medium for cost saving
+# EKS Node Group — t3.small for cost saving
79
resource "aws_eks_node_group" "crms" {
80
cluster_name = aws_eks_cluster.crms.name
81
node_group_name = "${var.project_name}-${var.environment}-nodes"
82
node_role_arn = aws_iam_role.eks_nodes.arn
83
subnet_ids = aws_subnet.public[*].id
84
85
- instance_types = ["t3.medium"]
+ instance_types = ["t3.small"]
86
87
scaling_config {
88
desired_size = 1
0 commit comments