0
0
Terraformcloud~10 mins

What is Infrastructure as Code in Terraform - Visual Explanation

Choose your learning style9 modes available
Process Flow - What is Infrastructure as Code
Write code to define infrastructure
Run code with Terraform
Terraform reads code
Terraform creates/updates resources
Infrastructure is ready and managed by code
Change code -> Run Terraform again -> Update infrastructure
Infrastructure as Code means writing code to create and manage cloud resources automatically. Terraform reads this code and makes the real infrastructure match it.
Execution Sample
Terraform
resource "aws_s3_bucket" "my_bucket" {
  bucket = "my-unique-bucket-123"
  acl    = "private"
}
This code tells Terraform to create a private S3 bucket named 'my-unique-bucket-123'.
Process Table
StepActionTerraform ReadsResult
1Start Terraform applyReads resource block for aws_s3_bucket.my_bucketPlans to create S3 bucket named 'my-unique-bucket-123'
2Create resourceSends request to AWS to create bucketAWS creates the bucket successfully
3Verify creationChecks bucket existsBucket is confirmed created
4FinishNo more changesInfrastructure matches code
💡 Terraform finishes because infrastructure matches the code definition.
Status Tracker
VariableStartAfter Step 1After Step 2After Step 3Final
aws_s3_bucket.my_bucketundefinedplannedcreatedverifiedready
Key Moments - 3 Insights
Why do we write code instead of clicking in the cloud console?
Writing code lets us repeat, track, and share infrastructure setup easily. Execution table step 1 shows Terraform reading code to plan creation.
What happens if we change the code after creation?
Terraform compares current infrastructure with code and updates resources accordingly, as shown in the concept flow last step.
Does Terraform create resources immediately when we write code?
No, Terraform only creates resources when we run 'terraform apply', as shown in execution table step 2.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what does Terraform do at step 2?
AVerifies the bucket exists
BReads the code to plan changes
CSends request to AWS to create the bucket
DFinishes execution
💡 Hint
Check the 'Action' and 'Result' columns in step 2 of the execution table.
According to the variable tracker, what is the state of aws_s3_bucket.my_bucket after step 3?
Aundefined
Bverified
Cplanned
Dcreated
💡 Hint
Look at the 'After Step 3' column for aws_s3_bucket.my_bucket in the variable tracker.
If we change the bucket name in the code and run Terraform again, what will happen?
ATerraform will plan to create a new bucket and possibly delete the old one
BTerraform will ignore the change
CTerraform will update the existing bucket to the new name
DTerraform will crash
💡 Hint
Refer to the concept flow last step about changing code and running Terraform again.
Concept Snapshot
Infrastructure as Code means writing code to define cloud resources.
Terraform reads this code and creates or updates resources automatically.
This makes infrastructure repeatable, trackable, and easy to manage.
Changes in code lead to updates in real infrastructure when Terraform runs.
No manual clicks needed; code is the source of truth.
Full Transcript
Infrastructure as Code is a way to manage cloud resources by writing code instead of clicking in a console. You write code that describes what you want, like creating a storage bucket. Then you run Terraform, which reads your code and makes the cloud match it. Terraform plans what to do, creates or updates resources, and checks they exist. If you change the code later, running Terraform again updates the infrastructure to match. This method helps keep infrastructure consistent, easy to share, and repeatable.