Jon Holman

Solutions Architect, Serverless Enthusiast, DevOps Engineer, AWS Community Builder

Go Global with AWS

Use AWS CloudFormation StackSets to go global with ease
2022-04-06

I have wanted to create a multi-region, global application with AWS to see how much effort it would be. I finally took some time to create a simple proof of concept, and I am amazed by how easy it was, thanks to CloudFormation StackSets. CloudFormation StackSets makes deploying the same stack to multiple regions and accounts easy. AWS CDK, AWS SAM, AWS CloudFormation, and I'm sure many other IaC tools can create CloudFormation StackSets. To keep this proof of concept small and straightforward, I used AWS SAM to simplify the creation of the CloudFormation resources for AWS Lambda with Amazon API Gateway in the regional deployments. These concepts can easily be applied to a more robust application to deploy across multiple accounts and regions.

...

Comments 0


My Current Favorite Infrastructure as Code (IaC) Tool

Discussing my favorite technology, my experience with IaC tools, and how I got to my current favorite
2022-03-22

If you've read my previous blog posts, you know I love serverless technologies. My love of serverless technologies comes from my passion for creating performant, efficient solutions. My favorite aspect of serverless technologies is its ability to 'scale to zero,' meaning that when there are no requests, there are no consumed resources (other than persistent storage) and therefore no costs. Of course, we can turn off every type of web service. However, the difference between traditional systems and good serverless solutions is that our web service is still online and available to accept requests. Until there's a request to act on, nothing is running. While there are no running resources, there are no costs.

...

Comments 0


ComputelessBlog > Part 5: Adding CloudFront

Adding CloudFront, Amazon's Content Delivery Network (CDN), to speed up page load performance for end users and offload traffic from API Gateway / DynamoDB
2021-01-04

In this post we will add a CloudFront distribution to our project.  Amazon CloudFront is AWS's Content Delivery Network (CDN).  Other popular CDNs that you may have heard of are Cloudflare, Fastly, and Akamai.  A CDN has servers distributed around the world for the purpose of caching content closer to its end users.  By caching content closer to the end users, the resources load faster and less traffic has to be served by your origin (the term used to refer to the source of the content).

...

Comments 0


ComputelessBlog > Part 4: Adding the category and home landing pages

Adding landing pages for navigation
2020-12-16

In this post we will add category and home landing pages to our blog.  We will add HTTP 404 responses for invalid URLs as well. 

...

Comments 0


ComputelessBlog > Part 3: Adding API Gateway and the Article Page

Adding API Gateway to our CloudFormation and Defining the Article Page in OpenAPI
2020-12-15

In this post we will add API Gateway to our CloudFormation template and add the article page endpoint to API Gateway using OpenAPI.  We will demo that new endpoint being used to display the sample article we added directly to the DynamoDB table in the previous post.

...

Comments 0


ComputelessBlog > Part 2: Planning the Data Model

Preparing to create our Computeless Blog by preparing our data model
2020-12-13

As the first step to creating our blog, we need to create our DynamoDB table that will store all of our content. To prepare to create our DynamoDB table, we will list out all of our data access patterns, so we can select our partition key(s) and sort key(s), and determine if we need to create any additional indexes.

...

Comments 0


ComputelessBlog > Part 1: Introduction

Introduction to creating a Computeless Blog on AWS using API Gateway and DynamoDB
2020-12-10

I thought a good way to start my blog would be to go over the steps I took to create it.  In choosing the technology stack, the first thing to know about me is I am a very cost conscious person, especially when it comes to recurring costs. I am also a huge fan of the latest technologies and finding if I can use them to create more efficient / performant solutions. As a result of that, for the past several years, I have been a huge advocate of Serverless technologies, AKA Functions as a Service (FaaS), with most of that experience focusing on Amazon Web Services (AWS) offering of Lambda.

...

Comments 0