AWS Lambda
Last updated 2024-06-11
IMPORTANT
This guide only applies to Next-Gen WAF customers with access to the Next-Gen WAF control panel. If you have access to the Next-Gen WAF product in the Fastly control panel, you can only deploy the Next-Gen WAF with the Edge WAF deployment method.
Fastly's Next-Gen WAF supports any Lambda function on Amazon Web Services (AWS). Our Lambda extension acts as an HTTP proxy between the AWS Lambda service and runtime and will allow or block traffic after inspecting the JSON payload of the web API event used by the Lambda runtime.
The Fastly WAF Lambda extension is configured by using the AWS Secrets Manager. You can download Fastly's WAF binaries to create a layer that a Lambda function can use.
Prerequisites
Copy the agent keys for your site (also known as workspace). You will need them when configuring the AWS Secrets Manager.
Recommendations
For reduced latency and improved performance, we recommend setting the memory for your Lambda function to at least 512 MB.
How the Fastly WAF extension works
The Lambda function invokes the Fastly WAF extension, which then follows the life cycle of the execution environment.
Life cycle phase | Description |
---|---|
init | The Lambda function creates or unfreezes the execution environment. |
restore | Not applicable. The SnapStart function is never invoked. |
invoke | The Lambda function invokes the Fastly WAF extension and then the Next-Gen WAF agent:
|
shutdown | The Lambda function shuts down the runtime and alerts the Fastly WAF extension so it can stop cleanly. The Next-Gen WAF agent uploads redacted request and response data to the cloud engine per our data storage policy. |
Configure the AWS Secrets Manager
Log in to the AWS Management Console.
From the Services menu, select Security, Identify, & Compliance and then select Secrets Manager.
Click Store a new secret.
For the Secret type, select Other type of secret. This option allows you to create a secret that can store credentials or other information by defining key-value strings.
In the Key/value pairs fields, enter your agent keys:
Key Value SIGSCI_ACCESSKEYID
accesskeyid
from the Next-Gen WAF control panelSIGSCI_SECRETACCESSKEY
secretaccesskey
from the Next-Gen WAF control panelClick Next.
In the Secret name and Description fields, enter a human-readable name and description for the secret (e.g.,
Fastly secret for Lambda extension
).Locate the Execute role of your Lambda function:
- In another tab, log in to the AWS Management Console.
- From the Services menu, select Compute and then select Lambda.
- Select your Lambda function.
- Click Configuration.
- From the sidebar, click Permissions and then click the role name for your Lambda function in the Execution role area.
- From the Identity and Access Management (IAM) page that appears, copy the ARN displayed on the page.
Back on the Configure secret page in the AWS Management Console, click Edit permissions.
Modify the configuration shown below to allow your Lambda function role to access this secret.
1234567891011{"Version" : "2012-10-17","Statement" : [ {"Effect" : "Allow","Principal" : {"AWS" : "arn:aws:iam::role/service-role/YOUR_LAMBDA_FUNCTION_ROLE"},"Action" : "secretsmanager:GetSecretValue","Resource" : "*"} ]}Click Save and then click Next.
Click Next.
Review the secret and then click Store.
Configure the Fastly WAF Lambda extension
Log in to the AWS Management Console.
Click Services. Select Compute, then select Lambda.
Select your Lambda function.
Click Configuration.
Click Environment variables.
Click Edit.
Add the following variables in the Key/value pairs fields:
Key Value SECRET_ARN
Secret ARN of the newly created secret
Example:
arn:aws:secretsmanager:us-west-2:secret:lambda_secrets-kMxqBgSECRET_REGION
Region where the newly created secret resides
Example:
us-west-2AWS_LAMBDA_EXEC_WRAPPER
/opt/sigsci-wrapper
SIGSCI_KEYSTORE_WRAPPER
/opt/fetch-aws-secrets
Only needed if using AWS Secrets ManagerClick Save.
Install the Fastly WAF Lambda extension
Download the latest version of the Agent for your particular architecture or use the public regional layer.
x86_64
AGENT_VER=`curl --fail -Ss https://dl.signalsciences.net/sigsci-agent/VERSION`curl --fail -O -Ss https://dl.signalsciences.net/sigsci-agent/${AGENT_VER}/linux/sigsci-agent_${AGENT_VER}_lambda_amd64.ziparm64
AGENT_VER=`curl --fail -Ss https://dl.signalsciences.net/sigsci-agent/VERSION`curl --fail -O -Ss https://dl.signalsciences.net/sigsci-agent/${AGENT_VER}/linux/sigsci-agent_${AGENT_VER}_lambda_arm64.zipLambda Layers
arn:aws:lambda:us-east-1:303561444828:layer:sigsci-agent-lambda_amd64:16
arn:aws:lambda:us-east-1:303561444828:layer:sigsci-agent-lambda_arm64:25
arn:aws:lambda:us-east-2:303561444828:layer:sigsci-agent-lambda_amd64:16
arn:aws:lambda:us-east-2:303561444828:layer:sigsci-agent-lambda_arm64:16
arn:aws:lambda:us-west-1:303561444828:layer:sigsci-agent-lambda_amd64:16
arn:aws:lambda:us-west-1:303561444828:layer:sigsci-agent-lambda_arm64:16
arn:aws:lambda:us-west-2:303561444828:layer:sigsci-agent-lambda_amd64:16
arn:aws:lambda:us-west-2:303561444828:layer:sigsci-agent-lambda_arm64:16
If the Lambda Agent is configured to retrieve secrets from the AWS Secrets Manager, add the appropriate regional layer, making sure this layer is ordered before the lambda extension.
arn:aws:lambda:us-east-1:303561444828:layer:sigsci-get-aws-secrets_amd64:1
arn:aws:lambda:us-east-1:303561444828:layer:sigsci-get-aws-secrets_arm64:1
arn:aws:lambda:us-east-2:303561444828:layer:sigsci-get-aws-secrets_amd64:1
arn:aws:lambda:us-east-2:303561444828:layer:sigsci-get-aws-secrets_arm64:1
arn:aws:lambda:us-west-1:303561444828:layer:sigsci-get-aws-secrets_amd64:1
arn:aws:lambda:us-west-1:303561444828:layer:sigsci-get-aws-secrets_arm64:1
arn:aws:lambda:us-west-2:303561444828:layer:sigsci-get-aws-secrets_amd64:1
arn:aws:lambda:us-west-2:303561444828:layer:sigsci-get-aws-secrets_arm64:1
Publish the Lambda agent zip file as a layer if downloaded.
NOTE
An example is shown below using the AWS Command Line Interface. The layer name and compatible-runtimes are at your discretion.
$ aws lambda publish-layer-version --layer-name "my-sigsci-lambda-layer" --zip-file "fileb://sigsci-agent_latest~lambda_amd64.zip" --compatible-runtimes nodejs14.xOnce the layer is successfully published, return to your Lambda function page within AWS.
Click Add a layer towards the bottom of the page in the Layers pane.
Add the layer that matches the published layer-name in the previous steps.
Click Save.
Troubleshooting
Take note of the ordering of the layers. If using the sigsci-get-aws-secrets
layer, make sure it's ordered before the Lambda extension.
All of our agent logging can be found in the Lambda logs in AWS' CloudWatch. On the Lambda function page, select Monitor, then View logs in CloudWatch. Logs can be viewed and captured here.
In development environments, the Fastly WAF Lambda extension can use the SIGSCI_ACCESSKEYID
and SIGSCI_SECRETACCESSKEY
key/value pairs as environment variables in the Lambda function configuration to avoid using the AWS Secrets Manager. However, this is not recommended for production environments.
Do not use this form to send sensitive information. If you need assistance, contact support. This form is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.