...

/

Management & Governance: CloudFormation

Management & Governance: CloudFormation

Defining AWS resources with CloudFormation service and our rule of thumb of what services to manage by Cloudformation and what services should be avoided is going to be discussed in this lesson.

When using AWS, you almost always want to use some CloudFormation (or a similar tool). It lets you create and update the things you have in AWS without having to click around on the console or write fragile scripts. It takes a while to get the hang of it, but the time savings pay off the initial investment almost immediately. Even for development, the ability to tear down everything cleanly and recreate your AWS set up in one click is extremely valuable

svg viewer

Defining AWS resources with CloudFormation

With CloudFormation;

  • You define your AWS resources as a YAML script (or JSON, but we find YAML to be
...