terraform
DevOps interview questions tagged terraform, across every topic.
33 questions · 9 unlocked for you
Concepts behind "terraform"
The concept pages behind what these questions are testing.
Foundational
Immutable infrastructure, and the replacement nobody planned forImmutability means a change produces a new resource rather than an edited one, which supports reproducibility when definitions and inputs are controlled. It also means some innocuous-looking edits destroy and recreate a live resource, and knowing which ones is the difference between a routine plan and an outage.🏗️ Declarative Infrastructure
Core
State and drift: why infrastructure as code needs a ledgerTerraform state is not a cache and not an optimisation. It is the mapping between the names in your configuration and the identifiers in the provider, and without it there is no way to know whether a resource in your code is the same resource that exists in the cloud. Every confusing Terraform behaviour, from destroy and recreate to import, follows from what state is for.🏗️ Declarative InfrastructureSign in