Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
increase git memory prod (#113)
Browse files Browse the repository at this point in the history
Signed-off-by: Ayman <enkhalifapro@gmail.com>
Co-authored-by: Ayman <enkhalifapro@gmail.com>
  • Loading branch information
khalifapro and enkhalifapro authored Mar 10, 2023
1 parent 897558c commit a1a6693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ resource "aws_ecs_task_definition" "insights-connector-git-task" {
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "2048"
memory = "6144"
memory = "7168"
execution_role_arn = aws_iam_role.ecs_task_execution_role.arn
task_role_arn = aws_iam_role.ecs_task_role.arn
container_definitions = jsonencode([
{
name = "insights-connector-git"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-git:stable"
cpu = 2048
memory = 6144
memory = 7168
essential = true
secrets : [
{
Expand Down

0 comments on commit a1a6693

Please sign in to comment.