Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add max 1 concurrency limit on all lambda functions #6200

Merged
merged 1 commit into from
May 17, 2024
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
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
Loading