Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
upgrade the amount of memory available to the task
  • Loading branch information
as1729 committed Jan 14, 2025
1 parent 7975232 commit c5e4ef2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@ module "arpa_audit_report" {
# TODO: Tune these values after observing usage in different environments.
# See also: --max_old_space_size in NODE_OPTIONS env var.
consumer_task_size = {
cpu = 1024 # 1 vCPU
memory = 4096 # 4 GB
cpu = 2048 # 2 vCPU
memory = 8192 # 8 GB
}

# Messaging
Expand Down Expand Up @@ -394,8 +394,8 @@ module "arpa_treasury_report" {
# TODO: Tune these values after observing usage in different environments.
# See also: --max_old_space_size in NODE_OPTIONS env var.
consumer_task_size = {
cpu = 1024 # 1 vCPU
memory = 4096 # 4 GB
cpu = 2048 # 2 vCPU
memory = 8192 # 8 GB
}

# Messaging
Expand Down

0 comments on commit c5e4ef2

Please sign in to comment.