Modify HTTP headers when you migrate from F5 to an Application Load Balancer on AWS
Created by Sachin Trivedi (AWS)
Environment: PoC or pilot | Source: On-Premise | Target: AWS Cloud |
R Type: Replatform | Workload: All other workloads | Technologies: Networking; Hybrid cloud; Migration |
AWS services: Amazon CloudFront; Elastic Load Balancing (ELB); AWS Lambda |
Summary
When you migrate an application that uses an F5 Load balancer to Amazon Web Services (AWS) and want to use an Application Load Balancer on AWS, migrating F5 rules for header modifications is a common problem. An Application Load Balancer doesn’t support header modifications, but you can use Amazon CloudFront as a content delivery network (CDN) and Lambda@Edge to modify headers.
This pattern describes the required integrations and provides sample code for header modification by using AWS CloudFront and Lambda@Edge.
Prerequisites and limitations
Prerequisites
An on-premises application that uses an F5 load balancer with a configuration that replaces the HTTP header value by using
if, else
. For more information about this configuration, see HTTP::headerin the F5 product documentation.
Limitations
This pattern applies to F5 load balancer header customization. For other third-party load balancers, please check the load balancer documentation for support information.
The Lambda functions that you use for Lambda@Edge must be in the US East (N. Virginia) Region.
Architecture
The following diagram shows the architecture on AWS, including the integration flow between the CDN and other AWS components.
Tools
AWS services
Application Load Balancer ─ An Application Load Balancer is an AWS fully managed load balancing service that functions at the seventh layer of the Open Systems Interconnection (OSI) model. It balances traffic across multiple targets and supports advanced routing requests based on HTTP headers and methods, query strings, and host-based or path-based routing.
Amazon CloudFront – Amazon CloudFront is a web service that speeds up the distribution of your static and dynamic web content, such as .html, .css, .js, and image files, to your users. CloudFront delivers your content through a worldwide network of data centers called edge locations for lower latency and improved performance.
Lambda@Edge ─ Lambda@Edge is an extension of AWS Lambda that lets you run functions to customize the content that CloudFront delivers. You can author functions in the US East (N. Virginia) Region, and then associate the function with a CloudFront distribution to automatically replicate your code around the world, without provisioning or managing servers. This reduces latency and improves the user experience.
Code
The following sample code provides a blueprint for modifying CloudFront response headers. Follow the instructions in the Epics section to deploy the code.
exports.handler = async (event, context) => { const response = event.Records[0].cf.response; const headers = response.headers; const headerNameSrc = 'content-security-policy'; const headerNameValue = '*.xyz.com'; if (headers[headerNameSrc.toLowerCase()]) { headers[headerNameSrc.toLowerCase()] = [{ key: headerNameSrc, value: headerNameValue, }]; console.log(`Response header "${headerNameSrc}" was set to ` + `"${headers[headerNameSrc.toLowerCase()][0].value}"`); } else { headers[headerNameSrc.toLowerCase()] = [{ key: headerNameSrc, value: headerNameValue, }]; } return response; };
Epics
Task | Description | Skills required |
---|---|---|
Create a CloudFront web distribution. | In this step, you create a CloudFront distribution to tell CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery. To create a distribution by using the console, sign in to the AWS Management Console, open the CloudFront console | Cloud administrator |
Task | Description | Skills required |
---|---|---|
Create and deploy a Lambda@Edge function. | You can create a Lambda@Edge function by using a blueprint for modifying CloudFront response headers. (Other bluePrints are available for different use cases; for more information, see Lambda@Edge example functions in the CloudFront documentation.) To create a Lambda@Edge function:
| AWS administrator |
Deploy the Lambda@Edge function. | Follow the instructions in step 4 of the Tutorial: Creating a simple Lambda@Edge function in the Amazon CloudFront documentation to configure the CloudFront trigger and deploy the function. | AWS administrator |
Related resources
CloudFront documentation