Skip to content

Commit e7627b0

Browse files
committed
fix: upgrade instance type and set standard support
1 parent f8cf2a5 commit e7627b0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

aws/main.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ module "eks" {
8282
}
8383
}
8484

85+
cluster_upgrade_policy = {
86+
support_type = "STANDARD"
87+
}
88+
8589

8690
cluster_endpoint_private_access = true
8791
cluster_endpoint_public_access = true
@@ -98,7 +102,7 @@ module "eks" {
98102

99103
# apply when available: iam_role_permissions_boundary = "arn:aws:iam::${local.account_id}:policy/service-user-creation-permission-boundary"
100104
eks_managed_node_group_defaults = {
101-
instance_types = ["t3a.medium"]
105+
instance_types = ["t3a.large"]
102106
block_device_mappings = [
103107
{
104108
device_name = "/dev/xvda"

0 commit comments

Comments
 (0)