Terraform is a JSON transformation language with side-effects
We use Terraform a lot at my work. There's been an interesting learning curve as I've gone from no knowledge of it, to using it in production. I had a bit of trouble figuring out a conceptual model - a way of thinking about what it was doing - that worked for me.
Eventually I found one.
What Terraform is
Terraform configurations are written in HCL which is
a specialized language for our tools, and JSON as the interoperability layer.
HCL provides significant templating functionality, and syntactic sugar - but to understand what the configuration will actually do, you should think of it as JSON. Specifically, think of it in terms of a set of deeply nested objects, with key -> value a.b.c.f -> config. The meaning of the config comes from the keys, and the value.
What Terraform does
Schematically, here's what happens when you use terraform:
graph TD code["code.tf / variables.tfvars"] state0[state.tfstate] state_tmp[refreshed.tfstate] state1[state.tfstate] infrastructure0[/infrastructure\] infrastructure1[\infrastructure/] tf_refresh(( )) tf_plan(( )) tf_plan_out[plan.json] tf_apply(( )) code --> tf_refresh state0 --> tf_refresh infrastructure0 --> tf_refresh tf_refresh -- refresh --> state_tmp code --> tf_plan state_tmp --> tf_plan tf_plan -- plan --> tf_plan_out tf_plan_out --> tf_apply infrastructure0 --> tf_apply tf_apply -- apply --> state1 tf_apply -- apply --> infrastructure1
The tricky part for me to understand here is the role of the tf.state
file. It's the mysterious file that's always being 'refreshed', and sometimes (or before you get the hang of things, maybe more than sometimes) gets corrupt and needs you to mess around to recover it.
But tf.state
is the key to understanding what terraform is doing. Basically, it's just taking tf.state
, applying a program (defined by your .tf
files), and updating to a new tf.state
. What happens to your infrastructure is just a happy side effect. This is I think a weakness of the terraform model - that you have two sources of truth - the state file, and the actual infrastructure. I wonder if for AWS at least, you could tag the infrastructure terraform created with enough metadata so that you could get rid of tf.state
.
- ← Previous
Web Sketchpad