Skip to content

Commit

Permalink
Merge pull request #25 from BCDevOps/increase-resourses
Browse files Browse the repository at this point in the history
increased resources for the billing runner
  • Loading branch information
wrnu authored Dec 11, 2023
2 parents 24384d2 + 8e92e46 commit 2f1bcb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/operations-account/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ resource "aws_ecs_task_definition" "billing_reports_ecs_task" {
family = "${local.app_name}-ecs-task"
network_mode = "awsvpc"
requires_compatibilities = ["FARGATE"]
cpu = "2048"
memory = "8192"
cpu = "8192" # This needs to be high for the quarterly billing report to run to completion
memory = "32768" # This needs to be high for the quarterly billing report to run to completion
execution_role_arn = aws_iam_role.ecs_task_exec_role.arn
task_role_arn = aws_iam_role.ecs_task_role.arn
runtime_platform {
Expand Down

0 comments on commit 2f1bcb1

Please sign in to comment.