Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit b9e36e9

Browse files
committed
fix: increase runner sync lambda memory setting and upgrade npm dependencies (#844)
1 parent e110318 commit b9e36e9

File tree

7 files changed

+1653
-1611
lines changed

7 files changed

+1653
-1611
lines changed

Diff for: modules/runner-binaries-syncer/README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,28 @@ No requirements.
4444
|------|---------|
4545
| aws | n/a |
4646

47+
## Modules
48+
49+
No Modules.
50+
51+
## Resources
52+
53+
| Name |
54+
|------|
55+
| [aws_caller_identity](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) |
56+
| [aws_cloudwatch_event_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_rule) |
57+
| [aws_cloudwatch_event_target](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_target) |
58+
| [aws_cloudwatch_log_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_log_group) |
59+
| [aws_iam_policy_document](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) |
60+
| [aws_iam_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) |
61+
| [aws_iam_role_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy) |
62+
| [aws_lambda_function](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_function) |
63+
| [aws_lambda_permission](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_permission) |
64+
| [aws_s3_bucket](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket) |
65+
| [aws_s3_bucket_notification](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_notification) |
66+
| [aws_s3_bucket_object](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_object) |
67+
| [aws_s3_bucket_public_access_block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_public_access_block) |
68+
4769
## Inputs
4870

4971
| Name | Description | Type | Default | Required |
@@ -74,7 +96,6 @@ No requirements.
7496
| lambda | n/a |
7597
| lambda\_role | n/a |
7698
| runner\_distribution\_object\_key | n/a |
77-
7899
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
79100

80101
## Philips Forest

Diff for: modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"dependencies": {
3333
"yn": "^4.0.0"
3434
}
35-
}
35+
}

Diff for: modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock

+719-706
Large diffs are not rendered by default.

Diff for: modules/runner-binaries-syncer/runner-binaries-syncer.tf

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ resource "aws_lambda_function" "syncer" {
1414
handler = "index.handler"
1515
runtime = "nodejs12.x"
1616
timeout = var.lambda_timeout
17+
memory_size = 256
1718

1819
environment {
1920
variables = {

Diff for: modules/runners/lambdas/runners/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
"typescript": "^4.2.3",
4242
"yn": "^4.0.0"
4343
}
44-
}
44+
}

Diff for: modules/runners/lambdas/runners/yarn.lock

+216-236
Large diffs are not rendered by default.

Diff for: modules/webhook/lambdas/webhook/yarn.lock

+693-666
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)