I have enabled lambda insights in my project with serverless:
npm install --save-dev serverless-plugin-lambda-insights => "serverless-plugin-lambda-insights": "^2.0.0",
custom:
lambdaInsights:
defaultLambdaInsights: true #enables Lambda Insights for all functions
[...]
plugins:
- serverless-plugin-lambda-insights
When I deploy, enhanced monitoring is active but there is a warning on monitoring and operations:

Looking for more detail brings me to

The execution role has no denies. The CloudWatchLambdaInsightsExecutionRolePolicy is added.
I have the same effect on multiple lambda functions.
How can I deploy without running into a warning?
I have enabled lambda insights in my project with serverless:
npm install --save-dev serverless-plugin-lambda-insights => "serverless-plugin-lambda-insights": "^2.0.0",
When I deploy, enhanced monitoring is active but there is a warning on monitoring and operations:

Looking for more detail brings me to

The execution role has no denies. The CloudWatchLambdaInsightsExecutionRolePolicy is added.
I have the same effect on multiple lambda functions.
How can I deploy without running into a warning?