Cheat Sheet · IT & Cloud

Terraform Associate Cheat Sheet: Facts and Workflow

intermediate

A free Terraform Associate (003) cheat sheet: the exam format at a glance plus the core workflow, commands, state and module concepts in one place.

By The Exam Atlas Editorial Team · Verified 2026-06-05

A one-page Terraform Associate reference: exam facts plus the workflow and concepts you must know. Use it for final review. Confirm all current details on the HashiCorp certification page.

Exam facts

ItemDetail
Questions~57 (multiple choice, multiple response, true/false)
Time~60 minutes
Pass markNot published as a fixed number (pass/fail)
Cost~US$70.50 (confirm with HashiCorp)
Validity2 years
Version003 (confirm current)

The core workflow

  • write - author configuration in HCL (HashiCorp Configuration Language).
  • terraform init - initialise the working directory and download providers.
  • terraform plan - preview the changes needed to reach the desired state.
  • terraform apply - make the changes.
  • terraform destroy - tear down the managed infrastructure.

State (heavily tested)

  • State file - records the real resources Terraform manages.
  • Local vs remote state - remote backends enable team collaboration.
  • State locking - prevents concurrent operations from corrupting state.
  • Backends - where state is stored (e.g. local, cloud object storage, HCP Terraform).

Configuration

  • Providers - plugins for platforms (AWS, Azure, GCP and many more).
  • Resources and data sources - what you create vs what you read.
  • Variables and outputs - parameterise inputs and expose results.
  • Functions and dependencies - built-in functions; Terraform infers resource order.

Modules

  • Module - a reusable, parameterised group of resources.
  • Public registry - a source of community and official modules.
  • Inputs / outputs and versioning - pass values in, read values out, pin versions.

Common traps

  • Confusing plan (preview) with apply (make changes).
  • Underestimating state - locking, remote backends and import show up often.
  • Forgetting that Terraform is provider-agnostic - the exam is about the tool, not one cloud.

FAQ

What does terraform plan do?
It previews the changes Terraform will make to reach the desired state described in your configuration, without applying them. It is a core safety step in the workflow, letting you review additions, changes and deletions before running apply.
How long is the Terraform Associate exam?
About 60 minutes, with roughly 57 questions, delivered online-proctored. Confirm the current format and version (003) on the HashiCorp certification page.

Sources