Ensure that roles defined in Serverless Framework files should not have policies granting full administrative privileges
It is important to avoid having '*' in the resource in the serverless framework IAM role because this can grant too much access to your Lambda functions and expose them to potential security risks.
Instead, it is recommended to specify the exact resources your functions need to interact with and limit the actions they can perform on those resources.
Risk Level: medium
Platform: AWS Serverless
Spectral Rule ID: SLFW013
REMEDIATION
In 'iamRoleStatements.Action', change the '*' value to a specific definition
functions:
example:
iamRoleStatements:
- Effect: Allow
Resource: "s3:GetObject"
- Action: "*"
+ Action: "s3:GetObject" # example
OR
provider:
name: aws
iamRoleStatements:
- Effect: "Allow"
Resource: "s3:GetObject"
- Action: "*"
+ Action: "s3:GetObject" # example
Read more:
Updated over 1 year ago