Skip to content

Commit

Permalink
Adjust ECS memory and cpu (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
roy-dydx authored Dec 3, 2024
1 parent 9a71290 commit b2cf829
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions indexer/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ locals {
},
"${local.service_names["comlink"]}" : {
ecs_desired_count : var.comlink_ecs_desired_count,
task_definition_memory : 4096,
task_definition_memory : 1024,
task_definition_cpu : 2048,
is_public_facing : true,
ports : [8080],
Expand Down Expand Up @@ -102,7 +102,7 @@ locals {
},
"${local.service_names["socks"]}" : {
ecs_desired_count : var.socks_ecs_desired_count,
task_definition_memory : 16384,
task_definition_memory : 4096,
task_definition_cpu : 8192,
is_public_facing : true,
ports : [8080, 8000],
Expand Down Expand Up @@ -204,8 +204,8 @@ locals {
},
"${local.service_names["vulcan"]}" : {
ecs_desired_count : var.vulcan_ecs_desired_count,
task_definition_memory : 8192,
task_definition_cpu : 4096,
task_definition_memory : 512,
task_definition_cpu : 2048,
is_public_facing : false,
ports : [8080],
health_check_port : 8080,
Expand Down

0 comments on commit b2cf829

Please sign in to comment.