Skip to content

Commit 6643a4b

Browse files
authored
chore: update AMI and increase number of EKS nodes (#2)
1 parent ff9508f commit 6643a4b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

env/dev/variables.tf

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ variable "bastion_ami_id" {
2424
variable "bation_instance_type" {
2525
description = "Instance type for bastion host"
2626
type = string
27-
default = "t3.micro"
27+
default = "t3.medium"
2828
}
2929

3030
variable "custom_ami_id" {
3131
description = "Custom AMI ID for EKS nodes"
3232
type = string
33-
default = "ami-0e28a3d4672edb444" # Get ID after Packer builds AMI
33+
default = "ami-00d7463ae4ca4c847" # Get ID after Packer builds AMI
3434
}
3535

3636
variable "default_tags" {
@@ -68,19 +68,19 @@ variable "node_capacity_type" {
6868
variable "node_group_desired_capacity" {
6969
description = "Desired number of nodes in the EKS node group"
7070
type = number
71-
default = 2
71+
default = 6
7272
}
7373

7474
variable "node_group_max_size" {
7575
description = "Maximum number of nodes in the EKS node group"
7676
type = number
77-
default = 3
77+
default = 10
7878
}
7979

8080
variable "node_group_min_size" {
8181
description = "Minimum number of nodes in the EKS node group"
8282
type = number
83-
default = 1
83+
default = 6
8484
}
8585

8686
variable "node_group_name" {
@@ -92,7 +92,7 @@ variable "node_group_name" {
9292
variable "node_instance_type" {
9393
description = "Instance type for the EKS nodes"
9494
type = string
95-
default = "t3.small"
95+
default = "t3.medium"
9696
}
9797

9898
variable "policy_arn" {

0 commit comments

Comments
 (0)