Skip to content

Commit

Permalink
fix: increase runner sync lambda memory setting and upgrade npm depen…
Browse files Browse the repository at this point in the history
…dencies (#844)
  • Loading branch information
npalm authored May 25, 2021
1 parent 490f28b commit 8798b5c
Show file tree
Hide file tree
Showing 7 changed files with 1,653 additions and 1,611 deletions.
23 changes: 22 additions & 1 deletion modules/runner-binaries-syncer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,28 @@ No requirements.
|------|---------|
| aws | n/a |

## Modules

No Modules.

## Resources

| Name |
|------|
| [aws_caller_identity](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) |
| [aws_cloudwatch_event_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_rule) |
| [aws_cloudwatch_event_target](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_target) |
| [aws_cloudwatch_log_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_log_group) |
| [aws_iam_policy_document](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) |
| [aws_iam_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) |
| [aws_iam_role_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy) |
| [aws_lambda_function](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_function) |
| [aws_lambda_permission](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_permission) |
| [aws_s3_bucket](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket) |
| [aws_s3_bucket_notification](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_notification) |
| [aws_s3_bucket_object](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_object) |
| [aws_s3_bucket_public_access_block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_public_access_block) |

## Inputs

| Name | Description | Type | Default | Required |
Expand Down Expand Up @@ -74,7 +96,6 @@ No requirements.
| lambda | n/a |
| lambda\_role | n/a |
| runner\_distribution\_object\_key | n/a |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

## Philips Forest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
"dependencies": {
"yn": "^4.0.0"
}
}
}
1,425 changes: 719 additions & 706 deletions modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions modules/runner-binaries-syncer/runner-binaries-syncer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ resource "aws_lambda_function" "syncer" {
handler = "index.handler"
runtime = "nodejs12.x"
timeout = var.lambda_timeout
memory_size = 256

environment {
variables = {
Expand Down
2 changes: 1 addition & 1 deletion modules/runners/lambdas/runners/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
"typescript": "^4.2.3",
"yn": "^4.0.0"
}
}
}
452 changes: 216 additions & 236 deletions modules/runners/lambdas/runners/yarn.lock

Large diffs are not rendered by default.

1,359 changes: 693 additions & 666 deletions modules/webhook/lambdas/webhook/yarn.lock

Large diffs are not rendered by default.

0 comments on commit 8798b5c

Please sign in to comment.