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

Commit

Permalink
double memory of github connector (#63)
Browse files Browse the repository at this point in the history
Signed-off-by: Fayaz G <[email protected]>
  • Loading branch information
fayazg authored Jun 14, 2022
1 parent 09ff56d commit e66f396
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions deploy/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -264,16 +264,16 @@ resource "aws_ecs_task_definition" "insights-connector-github-task" {
family = "insights-connector-github-task"
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "256"
memory = "1024"
cpu = "512"
memory = "2048"
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-github"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-github:latest"
cpu = 256
memory = 1024
cpu = 512
memory = 2048
essential = true
logConfiguration : {
"logDriver" : "awslogs",
Expand Down
8 changes: 4 additions & 4 deletions deploy/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -264,16 +264,16 @@ resource "aws_ecs_task_definition" "insights-connector-github-task" {
family = "insights-connector-github-task"
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "256"
memory = "1024"
cpu = "512"
memory = "2048"
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-github"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-github:stable"
cpu = 256
memory = 1024
cpu = 512
memory = 2048
essential = true
logConfiguration : {
"logDriver" : "awslogs",
Expand Down

0 comments on commit e66f396

Please sign in to comment.