Interview Infrastructure as Code (Terraform, Ansible)

What does terraform refresh do, and how has its behaviour changed?

Infrastructure as Code (Terraform, Ansible) · Basic level

Answer

terraform refresh used to update state to match remote objects, but the standalone command is deprecated. The safer current workflow is terraform plan -refresh-only and terraform apply -refresh-only, because they let you review state-only changes before writing them.

Technical explanation

Normal plan and apply do an implicit refresh, but refresh-only mode focuses on updating state without changing remote infrastructure.

Standalone refresh could update state without a reviewed plan, which made it easier to hide dangerous drift.

Use refresh-only when the real infrastructure is correct and state needs to catch up.

Keep Terraform's ownership boundary clear: one state should own a resource or field, and other tools should consume published outputs instead of modifying it.

Use fmt, validate, linting, policy checks, plan review, and state locking before production applies.

Design for small blast radius by splitting state around lifecycle, permissions, and recovery boundaries.

Hands-on example

1. Set up drift handling for: What does terraform refresh do, and how has its behaviour changed?

2. Schedule a read-only plan job per workspace:

terraform init

terraform plan -detailed-exitcode -out=drift.tfplan || status=$?

terraform show -json drift.tfplan > drift.json

3. Interpret exit code 0 as no drift, 2 as changes present, and 1 as an error requiring investigation.

4. For state-only synchronization, use refresh-only review:

terraform plan -refresh-only -out=refresh.tfplan

terraform apply refresh.tfplan

5. Open a ticket that classifies drift as revert, codify, ignore because externally owned, or remove from Terraform ownership.

Preparing for an interview?

Check how well your resume matches the role with our free resume checker— match score, ATS check, and the skills you're missing.

More Infrastructure as Code (Terraform, Ansible) interview questions

← All Infrastructure as Code (Terraform, Ansible) questions