Skip to content

Commit

Permalink
infra: scale up minimums (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Dec 1, 2024
1 parent 5c106cc commit fa1fefd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module "ecs_cluster" {
"c6a.xlarge" = ""
}

min_size = 2
min_size = 4
max_size = 24
minimum_scaling_step_size = 1
maximum_scaling_step_size = 1
Expand Down
2 changes: 1 addition & 1 deletion terraform/service_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module "ecs_app" {

name = "${local.namespace}-app"
cluster_name = module.ecs_cluster.cluster_name
min_capacity = 2
min_capacity = 9
max_capacity = 18

deployment_minimum_healthy_percent = 50
Expand Down

0 comments on commit fa1fefd

Please sign in to comment.