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

Commit

Permalink
increase jira memory (#107)
Browse files Browse the repository at this point in the history
Signed-off-by: Ayman <[email protected]>
Co-authored-by: Ayman <[email protected]>
  • Loading branch information
khalifapro and enkhalifapro authored Jan 31, 2023
1 parent fcf782a commit 79f5bcc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions deploy/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ resource "aws_ecs_task_definition" "insights-connector-jira-task" {
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "512"
memory = "1024"
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([
Expand Down Expand Up @@ -318,8 +318,8 @@ resource "aws_ecs_task_definition" "insights-connector-jira-task" {
{
name = "insights-connector-jira"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-jira:latest"
cpu = 128
memory = 512
cpu = 256
memory = 1536
essential = true
secrets : [
{
Expand Down
6 changes: 3 additions & 3 deletions deploy/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ resource "aws_ecs_task_definition" "insights-connector-jira-task" {
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "512"
memory = "1024"
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([
Expand Down Expand Up @@ -318,8 +318,8 @@ resource "aws_ecs_task_definition" "insights-connector-jira-task" {
{
name = "insights-connector-jira"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-jira:stable"
cpu = 128
memory = 512
cpu = 256
memory = 1536
essential = true
secrets : [
{
Expand Down

0 comments on commit 79f5bcc

Please sign in to comment.