Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .checkov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ skip-check:
- CKV_AWS_158
- CKV_AWS_338

# Pin module sources to a commit hash (false positive)
- CKV_TF_1

# These ignores are TEMPORARY. They will be resolved in the future.
- CKV_AWS_108
- CKV_TF_1
- CKV_TF_2
- CKV_AWS_115
- CKV_AWS_272
3 changes: 2 additions & 1 deletion .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:

# You can override MegaLinter flavor used to have faster performances
# More info at https://megalinter.io/latest/flavors/
uses: oxsecurity/megalinter@1fc052d03c7a43c78fe0fee19c9d648b749e0c01
# The below commit hash is v8.8.0
uses: oxsecurity/megalinter@e08c2b05e3dbc40af4c23f41172ef1e068a7d651

id: ml

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ megalint: ## Run the mega-linter.
docker run --platform linux/amd64 --rm \
-v /var/run/docker.sock:/var/run/docker.sock:rw \
-v $(shell pwd):/tmp/lint:rw \
oxsecurity/megalinter:v7
oxsecurity/megalinter:v8
3 changes: 2 additions & 1 deletion terraform/service/eventbridge.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "eventbridge" {
source = "terraform-aws-modules/eventbridge/aws"
source = "terraform-aws-modules/eventbridge/aws"
version = "4.1.0"

role_name = "${var.lambda_name}-eventbridge-role"

Expand Down
2 changes: 2 additions & 0 deletions terraform/service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ resource "aws_lambda_function" "lambda_function" {

memory_size = var.lambda_memory

reserved_concurrent_executions = 100

role = aws_iam_role.lambda_function_role.arn

environment {
Expand Down