Skip to content

Commit eb45d74

Browse files
Increase team-provisioner timeout to 300s (#124)
## Summary - Increases team-provisioner Lambda timeout from 60s to 300s - With 54 members, the Lambda timed out during group sync after creating all accounts - Each member takes ~3s (check exists + create + forwarding attempt + welcome email), so 54 members alone need ~162s before group sync even starts ## Context The provision-groups run from registry PR #21 merge timed out at 60s. All accounts were created and welcome emails sent, but group membership sync didn't complete.
1 parent 0ac926d commit eb45d74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

terraform/platform/lambdas/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ resource "aws_lambda_function" "team_provisioner" {
887887
role = aws_iam_role.team_provisioner.arn
888888
handler = "handler.handler"
889889
runtime = "python3.12"
890-
timeout = 60
890+
timeout = 300
891891
memory_size = 256
892892
filename = data.archive_file.team_provisioner.output_path
893893
source_code_hash = data.archive_file.team_provisioner.output_base64sha256

0 commit comments

Comments
 (0)