0
0
Terraformcloud~5 mins

State and real infrastructure mapping in Terraform - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the purpose of Terraform state?
Terraform state keeps track of the resources it manages. It maps the configuration to real infrastructure so Terraform knows what exists and what needs to change.
Click to reveal answer
beginner
How does Terraform use the state file during deployment?
Terraform reads the state file to understand current infrastructure. It compares this to the desired configuration to plan changes.
Click to reveal answer
intermediate
What can happen if the Terraform state file is lost or corrupted?
Terraform may lose track of resources, causing it to try to recreate or delete resources incorrectly. This can lead to downtime or resource duplication.
Click to reveal answer
intermediate
Why is remote state storage recommended in Terraform?
Remote state storage allows teams to share the state file safely. It prevents conflicts and keeps state backed up and secure.
Click to reveal answer
beginner
What is the difference between Terraform configuration and Terraform state?
Configuration is the code describing desired infrastructure. State is the snapshot of what Terraform has created and manages in the real world.
Click to reveal answer
What does Terraform state file primarily store?
ACloud provider billing info
BUser credentials
CTerraform configuration code
DCurrent infrastructure resource details
Why should Terraform state be stored remotely in team environments?
ATo allow multiple users to access and update state safely
BTo speed up Terraform execution
CTo reduce cloud costs
DTo encrypt Terraform configuration files
What happens if Terraform state is out of sync with real infrastructure?
ATerraform may try to recreate or delete resources incorrectly
BTerraform automatically fixes the state file
CTerraform ignores the state and applies changes blindly
DTerraform deletes all resources
Which command updates the Terraform state to match real infrastructure without making changes?
Aterraform apply
Bterraform refresh
Cterraform init
Dterraform plan
What is stored in Terraform configuration files?
ACloud provider API keys
BCurrent infrastructure state
CDesired infrastructure setup
DTerraform state file backup
Explain how Terraform state helps map configuration to real infrastructure.
Think about how Terraform knows what exists and what to change.
You got /4 concepts.
    Describe best practices for managing Terraform state in a team environment.
    Consider how teams avoid conflicts and data loss.
    You got /4 concepts.