Skip to content

Commit

Permalink
cpu/memory limit for metadata service task
Browse files Browse the repository at this point in the history
  • Loading branch information
oavdeev authored Jul 8, 2022
1 parent 3d65720 commit 120c6c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/metadata-service/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ EOF
requires_compatibilities = ["FARGATE"]
task_role_arn = aws_iam_role.metadata_svc_ecs_task_role.arn
execution_role_arn = var.fargate_execution_role_arn
cpu = 512
memory = 1024
cpu = var.metadata_service_cpu
memory = var.metadata_service_memory

tags = merge(
var.standard_tags,
Expand Down

0 comments on commit 120c6c7

Please sign in to comment.