Az

GNU Terry Pratchett on CloudFront

Not long after the passing of Terry Pratchett, revered author of the Discworld series (and many other excellent works!), people everywhere wanted to find ways of memorialising him in their own ways. One great solution was based around adding headers to web requests. The “clacks” sempahore system in Terry Pratchett is a form of low-tech, distributed, packet-switched network much like the internet and so it seemed fair to modify our systems to carry on his legacy.

X-Clacks-Overhead In Brief

In the Discworld series, the inventor of the clacks memorialises his son by putting the message “GNU John Dearheart” as a message. The key symbols are:

  • G: send the message on
  • N: do not log the message
  • U: turn the message around at the end of the line and send it back again

This way his son’s legacy will be captured forever in the stream.

We can modify many standard webservers to contain specialised headers, and so by setting X-Clacks-Overhead to GNU Terry Pratchett our web traffic can always have a little trace of that wonderful man.

Amazon Web Services: CloudFront

While the GNU Terry Pratchett site has a bunch of instructions for different web servers, it obviously can’t help you with every platform available. This website is hosted via AWS, where it uses Route53 for DNS, CloudFront as the CDN, and S3 for static asset storage; mostly to avoid paying the steeper rates for an always-on virtual server and also avoiding the concomitant maintenance overhead.

Unfortunately you can’t easily set response headers like some other platforms or web servers, but with the release of Lambda@Edge to all AWS customers you can now intercept CloudFront responses and run a Node.js function that modifies the headers.

Cost

There’s no free tier for Lambda@Edge, unlike normal Lambda functions, but the two factors in cost are the following:

  • US$0.60 per 1 million requests
  • US$0.00000625125 for every 128MB/second (based on multiples of 100ms)

I mucked around with the pricing calculator and it’s going to cost me US$0.00. If you’re blog is getting 100k hits a month this would still only be an extra US$0.04.

Of course, if something ever went super-viral or you misconfigured a Lambda (so it took too much time/memory) it could result in bill shock. Make sure you set up CloudWatch metrics to notify you if your costs suddenly shoot up, that way you can login and fix it without a huge hit. You can also contact AWS support about sudden billing spikes and they may be able to wipe things.

Instructions

  1. Go to the Lambda console
  2. Set your region to “US East (N. Virginia)”
  • Lambda@Edge is only available in this region, but it will still be deployed to all CloudFront regions/points-of-presence.
  1. Select the “Use a blueprint”
  2. Type “cloudfront” in the search bar and hit Enter
  3. Select cloudfront-modify-response-header
  4. Set a name, both GNUTerryPratchett and X-Clacks-Overhead are allowed and descriptive
  5. Create new (execution) role from AWS policy templates
  6. Set the role name, similar to the Lambda name is fine
  7. Use the default, already selected policy template (Basic Lambda@Edge permissions (for CloudFront trigger))
  8. Create function
  9. Select the Lambda name in the designer chart and you should be able to edit the code below
  10. Set the following code:
        'use strict';
        exports.handler = (event, context, callback) => {
          const response = event.Records[0].cf.response;
          const headers = response.headers;
    
          headers['x-clacks-overhead'] = [{
            key:   'X-Clacks-Overhead',
            value: "GNU Terry Pratchett"
          }];
    
          callback(null, response);
        }
        
    
  11. Use the default, already selected policy template
  12. Create function
  13. Select the “CloudFront” trigger that was automatically created
  14. Click “Deploy to Lambda@Edge”
  15. Select your distribution from the list
  16. Leave “Cache Behaviour” as defaults
  17. Set the “CloudFront Event” to “Viewer response”
  18. Select the checkbox to confirm you want to deploy it and click “Deploy”
  19. Go to your CloudFront distributions page and watch it take ages to deploy.
  20. Enjoy your sick new HTTP headers

Notes

By default, CloudFront will remove any capitalisation from headers, however under RFC 2616, RFC 7230, and RFC 7540 HTTP headers are supposed to be case insensitive so this should not matter. Unfortunately some misconfigured languages/frameworks (PHP is a known bugbear here) use case-sensitive string comparisons, so be aware!

References: