From 3e8f0a89684309e57c1496c38cea2e8627195a8d Mon Sep 17 00:00:00 2001 From: Sam Simpson Date: Fri, 24 Jan 2025 13:08:46 +0000 Subject: [PATCH] Remove 2xl instance types from arm worker node group --- terraform/deployments/cluster-infrastructure/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/deployments/cluster-infrastructure/variables.tf b/terraform/deployments/cluster-infrastructure/variables.tf index fb4777aeb..b11b385d4 100644 --- a/terraform/deployments/cluster-infrastructure/variables.tf +++ b/terraform/deployments/cluster-infrastructure/variables.tf @@ -66,7 +66,7 @@ variable "enable_arm_workers" { variable "arm_workers_instance_types" { type = list(string) description = "List of ARM-based instance types for the managed node group, in order of preference. The second and subsequent preferences are only relevant when using spot instances." - default = ["m7g.4xlarge", "m6g.4xlarge", "m7g.2xlarge", "m6g.2xlarge"] + default = ["m7g.4xlarge", "m6g.4xlarge"] } variable "arm_workers_default_capacity_type" {