Invalidate All Cloudfront Files

Invalidate All Cloudfront Files From The Command Line

AWS Cloudfront As I mentioned before, this website is built using Jekyll which generates static html which is then hosted on AWS S3.

This works great for me because it allows me to take advantage of the enormous capacity S3 offers while paying pennies per month for hosting and bandwidth. All the while I get to skip worrying about spinning up web servers, virtual machines, etc. I do love doing all that but not for a simple static website such as this one.

Having said that, you still need to separately set up an AWS Cloudfront distribution in front of your S3 bucket to manage caching at AWS's edge locations around the world, and it's also required to allow you to use SSL certs generated from the AWS Certification Manager.

AWS Cloudfront Diagram

One problem I was running into was that once I deployed a new set of static HTML to the S3 bucket that hosts this site, Cloudfront would not immediately pull the new data into it's cache at all its endpoints. You can set up reasonably sane TTL settings on your Cloudfront distribution to semi-alleviate this problem, but for me, I want to see my changes as soon as I finish deploying.

After looking at the Cloudfront documentation on invalidating a distribution's cache, it wasn't really clear how to invalidate ALL files that were cached from the S3 bucket, so I wrote a quick bash script to make it easier.

Hopefully this is helpful to someone...

Pause reading for 5 seconds...
Join My Mailing List!
Note: I will never share your email with anyone else.
Awesome! Thanks so much.
Submitting...
Ok, lets continue.

Invalidate All Cloudfront Cache Script

#!/bin/bash

# This script issues a new invalidation request
# for all files on a cloudfront distribution

AWS_PROFILE=MY_AWS_CERT_PROFILE
DISTRIBUTION_ID=MY_CLOUDFRONT_DISTRIBUTION_ID
DATESTRING=$(date +"%Y-%m-%d_%H-%M-%S")

JSON_STRING='
{
  "Paths": {
    "Quantity": 1,
    "Items": ["/*"]
  },
  "CallerReference": "'$DATESTRING'"
}
'

echo $JSON_STRING > /tmp/invalidate_cloudfront.json

aws cloudfront create-invalidation \
  --distribution-id $DISTRIBUTION_ID \
  --profile $AWS_PROFILE \
  --invalidation-batch file:///tmp/invalidate_cloudfront.json

rm /tmp/invalidate_cloudfront.json

The line "Items": ["/*"] is the key to specifying that all files need to be invalidated.

Note that you need to replace "MY_AWS_CERT_PROFILE" with the name of the certs profile you've defined in ~/.aws/credentials and you need to replace "MY_CLOUDFRONT_DISTRIBUTION_ID" obviously. If you haven't set up your credentials in ~/.aws, read the docs on using the AWS command line tool

Post A Twitter Response To This Blog Post

To: @mattccrampton

0