Where does the Terraform local backend store its state?
- In the /tmp directory
- In the terraform file
- In the terraform.tfstate file
- In the user's terraform.state file
Answer(s): C
Explanation:
The local backend stores state on the local filesystem, locks that state using system APIs, and performs operations locally.
Reference:
https://www.terraform.io/docs/language/settings/backends/local.html
Reveal Solution Next Question