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

Commit

Permalink
increase confluence memory (#108)
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 Feb 3, 2023
1 parent 79f5bcc commit e8ba691
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deploy/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ resource "aws_ecs_task_definition" "insights-connector-confluence-task" {
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "512"
memory = "2048"
memory = "3072"
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 @@ -401,7 +401,7 @@ resource "aws_ecs_task_definition" "insights-connector-confluence-task" {
name = "insights-connector-confluence"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-confluence:latest"
cpu = 256
memory = 1536
memory = 2560
essential = true
secrets : [
{
Expand Down
4 changes: 2 additions & 2 deletions deploy/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ resource "aws_ecs_task_definition" "insights-connector-confluence-task" {
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = "512"
memory = "2048"
memory = "3072"
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 @@ -401,7 +401,7 @@ resource "aws_ecs_task_definition" "insights-connector-confluence-task" {
name = "insights-connector-confluence"
image = "${var.eg_account_id}.dkr.ecr.${var.eg_aws_region}.amazonaws.com/insights-connector-confluence:stable"
cpu = 256
memory = 1536
memory = 2560
essential = true
secrets : [
{
Expand Down

0 comments on commit e8ba691

Please sign in to comment.