Control: Lambda functions concurrent execution limit configured
Description
Checks whether the AWS Lambda function is configured with function-level concurrent execution limit. The control is non-compliant if the Lambda function is not configured with function-level concurrent execution limit.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.lambda_function_concurrent_execution_limit_configuredSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.lambda_function_concurrent_execution_limit_configured --shareSQL
This control uses a named query:
select  arn as resource,  case    when reserved_concurrent_executions is null then 'alarm'    else 'ok'  end as status,  case    when reserved_concurrent_executions is null then title || ' function-level concurrent execution limit not configured.'    else title || ' function-level concurrent execution limit configured.'  end as reason    , region, account_idfrom  aws_lambda_function;