DeleteFunction
Event Information
- The DeleteFunction event in AWS Lambda refers to the event that is triggered when a Lambda function is deleted.
- This event can be used to track and log the deletion of Lambda functions for auditing and monitoring purposes.
- By capturing the DeleteFunction event, you can keep track of when and by whom a Lambda function was deleted, which can be useful for troubleshooting or security purposes.
Examples
- Unauthorized deletion: If the DeleteFunction action is not properly secured, an unauthorized user may be able to delete Lambda functions, potentially causing disruption to the application or service that relies on those functions.
- Data loss: If a Lambda function is deleted, any associated data or configurations may also be lost. This can result in data loss or the need to recreate the function and reconfigure it, leading to potential downtime or loss of critical information.
- Impact on dependent resources: Deleting a Lambda function may have a cascading effect on other resources that depend on it, such as event sources, triggers, or other services. This can lead to unexpected behavior or disruption in the overall system architecture.
Remediation
Using Console
-
Identify the specific issue or vulnerability in the AWS Lambda function by reviewing the event logs or security findings in the AWS console.
-
Determine the appropriate remediation steps based on the examples provided in the previous response:
a. Example 1: Excessive permissions for Lambda function
- Access the AWS Lambda console.
- Select the specific Lambda function that has excessive permissions.
- Click on the “Permissions” tab.
- Review the existing permissions and identify any unnecessary or excessive permissions.
- Remove the unnecessary permissions by clicking on the “X” icon next to each permission.
- Click on “Save” to apply the changes.
b. Example 2: Insecure environment variables in Lambda function
- Access the AWS Lambda console.
- Select the specific Lambda function that has insecure environment variables.
- Click on the “Configuration” tab.
- Scroll down to the “Environment variables” section.
- Review the existing environment variables and identify any sensitive information.
- Remove or encrypt any sensitive environment variables.
- Click on “Save” to apply the changes.
c. Example 3: Unencrypted data storage in Lambda function
- Access the AWS Lambda console.
- Select the specific Lambda function that has unencrypted data storage.
- Click on the “Configuration” tab.
- Scroll down to the “Environment variables” section.
- Review the existing environment variables and identify any variables related to data storage.
- Ensure that the data storage variables are configured to use encrypted storage options such as AWS KMS.
- Click on “Save” to apply the changes.
-
Monitor the AWS Lambda function after applying the remediation steps to ensure that the issues have been resolved and the function is functioning as expected. Regularly review the event logs and security findings to identify any new issues or vulnerabilities that may arise.
Using CLI
-
Enable VPC configuration for AWS Lambda:
- Use the
update-function-configuration
command to update the Lambda function’s configuration. - Specify the
--vpc-config
parameter with the appropriate VPC configuration details, such asSubnetIds
andSecurityGroupIds
. - Example command:
aws lambda update-function-configuration --function-name <function-name> --vpc-config SubnetIds=<subnet-ids>,SecurityGroupIds=<security-group-ids>
- Use the
-
Enable encryption at rest for AWS Lambda function code:
- Use the
update-function-configuration
command to update the Lambda function’s configuration. - Specify the
--kms-key-arn
parameter with the ARN of the KMS key to be used for encryption. - Example command:
aws lambda update-function-configuration --function-name <function-name> --kms-key-arn <kms-key-arn>
- Use the
-
Enable AWS CloudTrail logging for AWS Lambda:
- Use the
update-function-configuration
command to update the Lambda function’s configuration. - Specify the
--tracing-config
parameter with the appropriate tracing configuration details, such asMode
set toActive
. - Example command:
aws lambda update-function-configuration --function-name <function-name> --tracing-config Mode=Active
- Use the
Using Python
-
Enable VPC configuration for AWS Lambda:
- Use the
update_function_configuration
method from the AWS SDK to update the Lambda function’s configuration. - Set the
VpcConfig
parameter with the appropriate VPC settings, includingSubnetIds
andSecurityGroupIds
. - Here’s an example Python script:
- Use the
-
Enable encryption at rest for AWS Lambda function:
- Use the
update_function_configuration
method from the AWS SDK to update the Lambda function’s configuration. - Set the
KMSKeyArn
parameter with the ARN of the AWS Key Management Service (KMS) key to be used for encryption. - Here’s an example Python script:
- Use the
-
Enable AWS CloudTrail logging for AWS Lambda:
- Use the
update_function_configuration
method from the AWS SDK to update the Lambda function’s configuration. - Set the
TracingConfig
parameter with the value'Active'
to enable AWS X-Ray tracing and CloudTrail logging. - Here’s an example Python script:
- Use the