nerdexam
HashiCorp

TERRAFORM-ASSOCIATE-004 · Question #173

All standard backend types support state locking, and remote operations like plan, apply, and destroy.

The correct answer is B. False. Not all standard backend types support state locking and remote operations like plan, apply, and destroy. For example, the local backend does not support remote operations and state locking. State locking is a feature that ensures that no two users can make changes to the state…

Submitted by kwame.gh· Apr 18, 2026Manage Terraform State

Question

All standard backend types support state locking, and remote operations like plan, apply, and destroy.

Options

  • ATrue
  • BFalse

How the community answered

(31 responses)
  • A
    13% (4)
  • B
    87% (27)

Explanation

Not all standard backend types support state locking and remote operations like plan, apply, and destroy. For example, the local backend does not support remote operations and state locking. State locking is a feature that ensures that no two users can make changes to the state file at the same time, which is crucial for preventing race conditions. Remote operations allow running Terraform commands on a remote server, which is supported by some backends like remote or consul, but not all.

Topics

#Terraform Backends#State Locking#Remote State#Remote Operations

Community Discussion

No community discussion yet for this question.

Full TERRAFORM-ASSOCIATE-004 Practice