Terraform Associate Exam QuestionsBrowse all questions from this exam

Terraform Associate Exam - Question 34


What does the default "local" Terraform backend store?

Show Answer
Correct Answer: D

The default 'local' Terraform backend stores the state file. This state file, typically named 'terraform.tfstate', contains information about the resources managed by Terraform, their current state, and any dependencies between them. Terraform uses this state file to map real-world resources to the configuration, track metadata, and improve performance for large infrastructures.

Discussion

8 comments
Sign in to comment
softarts
Nov 16, 2023

choose D

EltoothOption: D
Dec 26, 2023

D is correct answer. https://www.terraform.io/language/settings/backends/local https://www.terraform.io/language/state

campsOption: D
Sep 30, 2024

D. State file. The default "local" Terraform backend stores the state file on the local disk of the machine running Terraform. The state file contains information about the resources managed by Terraform, such as their current state and any dependencies between them. When running Terraform commands, such as terraform plan or terraform apply, Terraform reads the state file to determine the current state of the resources and what changes need to be made to reach the desired state.

BereOption: D
Jun 20, 2024

https://developer.hashicorp.com/terraform/language/state Terraform must store state about your managed infrastructure and configuration. This state is used by Terraform to map real world resources to your configuration, keep track of metadata, and to improve performance for large infrastructures. This state is stored by default in a local file named "terraform.tfstate", but it can also be stored remotely, which works better in a team environment.

asat_chil
Jul 5, 2024

Answer: D

vyhakOption: D
Jul 30, 2024

D is the answer

Power123
Sep 30, 2024

D is correct

Bluemoon22
Oct 24, 2024

D, state files