Introduction to CloudFormation

3 · Adrian Ancona Novelo · June 17, 2020, 11:46 a.m.
CloudFormation is AWS’ offering for modeling infrastructure as code. Its purpose is similar to that of Salt or Terraform. Getting started CloudFormation allows us to define our infrastructure on template files written in JSON or YAML. The following examples show a template to create an EC2 instance: 1 2 3 4 5 6 7 8 9 10 11 12 { "Description": "Create a single EC2 instance", "Resources": { "Host1": { "Type" : "AWS::EC2::Instance", "Properties": { "InstanceType": "t2.mi...