Skip to content

Commit

Permalink
Adjust ECS memory and cpu (#151)
Browse files Browse the repository at this point in the history
* Update locals.tf

* Update locals.tf
  • Loading branch information
roy-dydx authored Dec 12, 2024
1 parent b2cf829 commit b78536c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 : 1024,
task_definition_memory : 4096,
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 : 4096,
task_definition_memory : 16384,
task_definition_cpu : 8192,
is_public_facing : true,
ports : [8080, 8000],
Expand Down Expand Up @@ -204,7 +204,7 @@ locals {
},
"${local.service_names["vulcan"]}" : {
ecs_desired_count : var.vulcan_ecs_desired_count,
task_definition_memory : 512,
task_definition_memory : 4096,
task_definition_cpu : 2048,
is_public_facing : false,
ports : [8080],
Expand Down

0 comments on commit b78536c

Please sign in to comment.