diff --git a/README.md b/README.md index 409cab1..21b5867 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ efs-csi-controller 0 5m | [cluster\_name](#input\_cluster\_name) | EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev) | `string` | n/a | yes | | [cluster\_version](#input\_cluster\_version) | Kubernetes version to use for the EKS cluster | `string` | n/a | yes | | [eks\_instance\_disk\_size](#input\_eks\_instance\_disk\_size) | Size of the EKS node disk in GB | `number` | `80` | no | -| [eks\_instance\_types](#input\_eks\_instance\_types) | List of EC2 instance types for the EKS node group | `list(string)` |
[
"t3a.medium"
]
| no | +| [eks\_instance\_types](#input\_eks\_instance\_types) | List of EC2 instance types for the EKS node group | `list(string)` |
[
"t4g.medium"
]
| no | | [eks\_ng\_desired\_size](#input\_eks\_ng\_desired\_size) | Desired size of the EKS node group | `number` | `2` | no | | [eks\_ng\_max\_size](#input\_eks\_ng\_max\_size) | Maximum size of the EKS node group | `number` | `2` | no | | [eks\_ng\_min\_size](#input\_eks\_ng\_min\_size) | Minimum size of the EKS node group | `number` | `2` | no | diff --git a/main.tf b/main.tf index 67c4b41..5ef061c 100644 --- a/main.tf +++ b/main.tf @@ -83,9 +83,6 @@ module "cluster" { metrics-server = { most_recent = true } - prometheus-node-exporter = { - most_recent = true - } snapshot-controller = { most_recent = true } @@ -97,7 +94,7 @@ module "cluster" { } eks_managed_node_group_defaults = { - ami_type = "BOTTLEROCKET_x86_64" + ami_type = "BOTTLEROCKET" } node_security_group_enable_recommended_rules = true diff --git a/variables.tf b/variables.tf index 9e86fcb..834ae63 100644 --- a/variables.tf +++ b/variables.tf @@ -67,7 +67,7 @@ variable "eks_instance_types" { description = "List of EC2 instance types for the EKS node group" type = list(string) default = [ - "t3a.medium" + "t4g.medium" ] validation { condition = length(var.eks_instance_types) > 0