Skip to content

Commit

Permalink
Merge pull request #6200 from connext/fix/hotfix_lambda_concurrency
Browse files Browse the repository at this point in the history
fix: add max 1 concurrency limit on all lambda functions
  • Loading branch information
preethamr authored May 17, 2024
2 parents ccd53e5 + 018251e commit 2a19b15
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions ops/modules/lambda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,14 @@ resource "aws_iam_role" "lambda" {
}
}
resource "aws_lambda_function" "executable" {
function_name = "${var.container_family}-${var.environment}-${var.stage}"
image_uri = "${local.repository_url}:${var.docker_image_tag}"
package_type = "Image"
role = aws_iam_role.lambda.arn
architectures = ["x86_64"]
timeout = var.timeout
memory_size = var.memory_size
function_name = "${var.container_family}-${var.environment}-${var.stage}"
image_uri = "${local.repository_url}:${var.docker_image_tag}"
package_type = "Image"
role = aws_iam_role.lambda.arn
architectures = ["x86_64"]
timeout = var.timeout
memory_size = var.memory_size
reserved_concurrent_executions = 1
environment {
variables = merge(var.container_env_vars, { DD_SERVICE = var.container_family })
}
Expand Down

0 comments on commit 2a19b15

Please sign in to comment.