0
0
AWScloud~10 mins

CloudFormation vs Terraform awareness in AWS - Visual Side-by-Side Comparison

Choose your learning style9 modes available
Process Flow - CloudFormation vs Terraform awareness
Write Infrastructure Code
CloudFormation
Upload Template
Create/Update Stack
AWS Manages State
Resources Created
Infrastructure Ready
Shows the choice between CloudFormation and Terraform, their deployment steps, and how state is managed.
Execution Sample
AWS
1. Write CloudFormation YAML template
2. Upload template to AWS
3. AWS creates stack and resources
Deploy infrastructure using CloudFormation by uploading a template and letting AWS manage the deployment.
Process Table
StepActionToolState ManagementResult
1Write infrastructure codeBothLocal fileCode ready
2Choose toolDecisionN/ASelect CloudFormation or Terraform
3Upload templateCloudFormationAWS managesTemplate uploaded
4Init and planTerraformUser managesPlan created
5Create or update stackCloudFormationAWS managesStack created/updated
6Apply changesTerraformUser managesResources created
7Manage stateCloudFormationAWS managesState stored in AWS
8Manage stateTerraformUser managesState stored locally or remote
9Infrastructure readyBothN/AResources available
10ExitBothN/ADeployment complete
💡 Deployment completes after resources are created and state is managed.
Status Tracker
VariableStartAfter Step 3After Step 5After Step 6Final
Infrastructure CodeNot writtenWrittenWrittenWrittenWritten
Template UploadedNoYesYesYesYes
Stack CreatedNoNoYesYesYes
Plan CreatedNoNoNoYesYes
Resources CreatedNoNoYesYesYes
State LocationNoneNoneAWSUserUser or AWS
Key Moments - 3 Insights
Why does CloudFormation manage state automatically but Terraform requires user management?
CloudFormation stores state inside AWS as part of the stack, so users don't handle it directly (see steps 7 and 8 in execution_table). Terraform stores state files locally or remotely, so users must manage them.
What happens after uploading a CloudFormation template?
AWS creates or updates the stack automatically, managing resources and state (step 5 and 7 in execution_table). This differs from Terraform which requires a separate apply step.
Why is there a planning step in Terraform but not in CloudFormation?
Terraform's plan step (step 4) shows changes before applying, giving users control. CloudFormation applies changes directly after upload, so no separate plan step exists.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, at which step does Terraform create resources?
AStep 3
BStep 6
CStep 5
DStep 7
💡 Hint
Check the 'Action' and 'Tool' columns for Terraform resource creation.
According to variable_tracker, where is the state stored after step 7 for CloudFormation?
ALocally on user machine
BNot stored
CIn AWS managed service
DIn Terraform Cloud
💡 Hint
Look at 'State Location' variable after step 7.
If you skip the plan step in Terraform, what changes in the execution_table?
AStep 4 would be missing
BStep 3 would be missing
CStep 6 would be missing
DStep 5 would be missing
💡 Hint
Plan step is step 4 in execution_table.
Concept Snapshot
CloudFormation and Terraform both deploy infrastructure as code.
CloudFormation uses AWS templates and manages state automatically.
Terraform uses its own language, requires init, plan, and apply steps.
Terraform state is managed by the user locally or remotely.
CloudFormation stacks are managed fully by AWS.
Choose based on control needs and environment.
Full Transcript
This visual execution compares CloudFormation and Terraform deployment flows. Both start by writing infrastructure code. Then you choose the tool. CloudFormation requires uploading a template to AWS, which manages the stack and state automatically. Terraform requires initialization and planning steps before applying changes, with the user managing state files. The execution table shows each step, the tool involved, how state is managed, and the result. Variable tracking shows how code, templates, stacks, plans, resources, and state locations change over time. Key moments clarify why CloudFormation manages state automatically, the role of the plan step in Terraform, and what happens after uploading a CloudFormation template. The quiz tests understanding of when resources are created, where state is stored, and the effect of skipping Terraform's plan step. The snapshot summarizes key differences and usage notes.