Difference between revisions of "AWS/Lambda"

From Ever changing code
< AWS
Jump to navigation Jump to search
(Created page with "= Lambda@Edge = AWS service for CloudFront distribution Lambda at edgde allows to run arbitrary code to manipulate HTTP requests and responses, it's common to also manipulate...")
 
 
Line 2: Line 2:
AWS service for CloudFront distribution Lambda at edgde allows to run arbitrary code to manipulate HTTP requests and responses, it's common to also manipulate headers, Tamas website has a good article about it. It also serves a good reference to what I also deployed to manipulate headers all with Terraform.
AWS service for CloudFront distribution Lambda at edgde allows to run arbitrary code to manipulate HTTP requests and responses, it's common to also manipulate headers, Tamas website has a good article about it. It also serves a good reference to what I also deployed to manipulate headers all with Terraform.
* [https://advancedweb.hu/how-to-use-lambda-edge-with-terraform/#differences-from-a-regular-lambda-function How to use Lambda@Edge with Terraform]
* [https://advancedweb.hu/how-to-use-lambda-edge-with-terraform/#differences-from-a-regular-lambda-function How to use Lambda@Edge with Terraform]
Bonus:
Bonus:
* [https://advancedweb.hu/how-cloudfront-routing-works/ How CloudFront routing works]
* [https://advancedweb.hu/how-cloudfront-routing-works/ How CloudFront routing works]
* [https://advancedweb.hu/how-to-use-cloudfront-functions-to-change-the-origin-request-path/ How to use CloudFront Functions to change the origin request path] The new way to run code on the edge provides many benefits over Lambda@Edge
* [https://advancedweb.hu/how-to-use-cloudfront-functions-to-change-the-origin-request-path/ How to use CloudFront Functions to change the origin request path] The new way to run code on the edge provides many benefits over Lambda@Edge

Latest revision as of 11:31, 28 August 2021

Lambda@Edge

AWS service for CloudFront distribution Lambda at edgde allows to run arbitrary code to manipulate HTTP requests and responses, it's common to also manipulate headers, Tamas website has a good article about it. It also serves a good reference to what I also deployed to manipulate headers all with Terraform.


Bonus: