We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9bf47f commit eecf073Copy full SHA for eecf073
lambda.tf
@@ -32,6 +32,11 @@ resource "aws_lambda_function" "lambda" {
32
security_group_ids = [aws_security_group.this.id]
33
}
34
35
+ tracing_config {
36
+ #tfsec:ignore:aws-lambda-enable-tracing Let the caller decide if they want to enable tracing
37
+ mode = "PassThrough"
38
+ }
39
+
40
layers = [
41
"arn:aws:lambda:${data.aws_region.current.name}:017000801446:layer:AWSLambdaPowertoolsPythonV3-python312-arm64:${var.powertools_version}"
42
]
0 commit comments