Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/app/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module "web_service" {
environment = local.task_envs
secrets = local.task_secrets
cpu = 1024
memory = 2048
memory = 3072
docker_image = "${var.account_id}.dkr.ecr.eu-west-2.amazonaws.com/${var.docker_image}@${var.image_digest}"
execution_role_arn = aws_iam_role.ecs_task_execution_role.arn
task_role_arn = aws_iam_role.ecs_task_role.arn
Expand Down