AWS fundamentals: What is CloudFormation?

Philipp Muens
2 min readFeb 24, 2016

In this blog post series we’ll take a closer look at Amazon web services (AWS) and all their Serverless related services in detail.

Today we look at CloudFormation. What is it and how does the Serverless framework use it?

This chapter is a free sample taken from our “Learn Serverless” book.

Back in the starting days of AWS you would login to your AWS account and configure everything by hand. You’ll create the necessary resources like S3 buckets, policies and users / roles and orchestrate them.

The problem with this approach is that nothing is (obviously) automated. You are not able to share and recreate an infrastructure from scratch without spending a huge amount of time configuring everything.

CloudFormation was invented by Amazon to circumvent this limitations.

How does it look like?

Here’s a simple example:

{<br />
"Version": "2012-10-17",<br />
"Statement": {<br />
"Effect": "Allow",<br />
"Action": "s3:ListBucket",<br />
"Resource": "arn:aws:s3:::example_bucket"<br />
}<br />
}<br />

The CloudFormation templates are defined with the help of JSON. This makes it easy, accessible and understandable if you have experiences with JSON in general. It also makes it very easy to interact with the templates in your favorite programming language.

If you have no experience with JSON you could use the AWS CloudFormation designer to design your templates in your browser. The designer generates the JSON which you can then use for further processing.

Note: The usage of CloudFormation is free, but you’ll have to pay for the resources you’ll define in your template.

How Serverless uses CloudFormation

Serverless is a heavy user of CloudFormation templates. Nearly everything AWS related is defined with the help of CloudFormation. Some of those templates a generated automatically. You can always define new ones on your own. Those are then recognized and execute by Serverless.

Additional resources

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Philipp Muens
Philipp Muens

Written by Philipp Muens

👨‍💻 Maker — 👨‍🏫 Lifelong learner — Co-creator of the Serverless Framework — https://philippmuens.com

No responses yet

Write a response