Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions aws/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ module "eks" {
services = {
name = "services"
instance_types = ["t3.xlarge"]
capacity_type = "ON_DEMAND"
ami_type = "AL2023_x86_64_STANDARD"

min_size = 1
Expand Down Expand Up @@ -141,11 +142,12 @@ module "eks" {
compute = {
name = "compute"
instance_types = local.instance_types
capacity_type = "SPOT"
ami_type = "AL2023_x86_64_STANDARD"

min_size = 0
max_size = 30
desired_size = 1
desired_size = 0

subnet_ids = module.vpc.private_subnets

Expand Down Expand Up @@ -199,11 +201,12 @@ module "eks" {
big_compute = {
name = "big-compute"
instance_types = local.large_instance_types
capacity_type = "SPOT"
ami_type = "AL2023_x86_64_STANDARD"

min_size = 0
max_size = 30
desired_size = 1
desired_size = 0

subnet_ids = module.vpc.private_subnets

Expand Down