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
1 change: 1 addition & 0 deletions .checkov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ skip-check:
- CKV_AWS_120 # LOW "Ensure API Gateway caching is enabled"
- CKV_AWS_144 # LOW "Ensure that S3 bucket has cross-region replication enabled"
- CKV_AWS_158 # LOW "Ensure that CloudWatch Log Group is encrypted by KMS"
- CKV_AWS_173 # LOW "Check encryption settings for Lambda environmental variable"
- CKV_AWS_225 # LOW "Ensure API Gateway method setting caching is enabled"
- CKV_AWS_272 # HIGH "Ensure AWS Lambda function is configured to validate code-signing"
- CKV_AWS_283 # HIGH "Ensure no IAM policies documents allow ALL or any AWS principal permissions to the resource"
Expand Down
1 change: 0 additions & 1 deletion infra/modules/alerting/telegram.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ resource "aws_lambda_function" "telegram" {
runtime = "provided.al2023"
timeout = 10
memory_size = 128
kms_key_arn = "arn:aws:kms:${data.aws_region.current.region}:${data.aws_caller_identity.current.account_id}:alias/aws/lambda"
reserved_concurrent_executions = 10

environment {
Expand Down
1 change: 0 additions & 1 deletion infra/modules/handler/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ resource "aws_lambda_function" "this" {
runtime = "provided.al2023"
timeout = var.timeout
memory_size = var.memory_size
kms_key_arn = "arn:aws:kms:${data.aws_region.current.region}:${data.aws_caller_identity.current.account_id}:alias/aws/lambda"
reserved_concurrent_executions = 10

environment {
Expand Down
Loading