Skip to content

Commit 8798b5c

Browse files
authored
fix: increase runner sync lambda memory setting and upgrade npm dependencies (#844)
1 parent 490f28b commit 8798b5c

File tree

7 files changed

+1653
-1611
lines changed

7 files changed

+1653
-1611
lines changed

modules/runner-binaries-syncer/README.md

Lines changed: 22 additions & 1 deletion
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

modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json

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

modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock

Lines changed: 719 additions & 706 deletions
Large diffs are not rendered by default.

modules/runner-binaries-syncer/runner-binaries-syncer.tf

Lines changed: 1 addition & 0 deletions
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 = {

modules/runners/lambdas/runners/package.json

Lines changed: 1 addition & 1 deletion
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+
}

modules/runners/lambdas/runners/yarn.lock

Lines changed: 216 additions & 236 deletions
Large diffs are not rendered by default.

modules/webhook/lambdas/webhook/yarn.lock

Lines changed: 693 additions & 666 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)