Skip to content

Commit d8360c4

Browse files
fix:reducing lambda permission policy length
1 parent b0ff025 commit d8360c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logs_monitoring_cloudwatch_log.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resource "aws_cloudwatch_log_subscription_filter" "test_lambdafunction_logfilter
99

1010
resource "aws_lambda_permission" "allow_cloudwatch_logs_to_call_dd_lambda_handler" {
1111
for_each = { for lg in local.log_groups_to_use : lg => lg }
12-
statement_id = "${substr(replace(each.value, "/", "_"), 0, 67)}-AllowExecutionFromCloudWatchLogs"
12+
statement_id = "${substr(replace(replace(each.value, "/aws/lambda", ""), "/", "_"), 0, 67)}-CW"
1313
action = "lambda:InvokeFunction"
1414
function_name = aws_cloudformation_stack.datadog-forwarder.outputs.DatadogForwarderArn
1515
principal = "logs.${var.aws_region}.amazonaws.com"

0 commit comments

Comments
 (0)