We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1fd120 commit ff5af73Copy full SHA for ff5af73
terraform/ecs_batch_processor_config.tf
@@ -194,11 +194,12 @@ resource "aws_ecs_task_definition" "ecs_task" {
194
execution_role_arn = aws_iam_role.ecs_task_exec_role.arn
195
196
container_definitions = jsonencode([{
197
- name = "${local.short_prefix}-process-records-container"
198
- image = "${aws_ecr_repository.processing_repository.repository_url}:${local.image_tag}"
199
- cpu = 4096
200
- memory = 16384
201
- essential = true
+ name = "${local.short_prefix}-process-records-container"
+ image = "${aws_ecr_repository.processing_repository.repository_url}:${local.image_tag}"
+ cpu = 4096
+ memory = 16384
+ memoryReservation = 16384
202
+ essential = true
203
environment = [
204
{
205
name = "SOURCE_BUCKET_NAME"
0 commit comments