Rationale for Correct Answer: A Terraform configuration supports only one backend at a time. The backend determines where state is stored and how locking works. Terraform does not support writing the same state to multiple backends simultaneously via multiple backend blocks.
Analysis of Incorrect Options (Distractors):
A (True): Incorrect—Terraform allows only a single backend configuration for a given working directory/root module.
Key Concept: Single-backend design: one state location per configuration/workspace.
[Reference: Terraform Objectives — Navigate Terraform State and Backends (backend configuration and limitations)., , , , , ]
Submit