- (Exam Topic 1)
A Terraform local value can reference other Terraform local values.
Correct Answer:
A
"The expressions in local values are not limited to literal constants; they can also reference other values in the module in order to transform or combine them, including variables, resource attributes, or other local values:" https://www.terraform.io/language/values/locals#declaring-a-local-value
- (Exam Topic 4)
Which of the following commands will launch the Interactive console for Terraform interpolations?
Correct Answer:
B
https://www.terraform.io/docs/commands/console.html
- (Exam Topic 4)
You have decided to create a new Terraform workspace to deploy a development environment. What is different about this workspace?
Correct Answer:
C
- (Exam Topic 4)
A terraform apply can not ______ infrastructure.
Correct Answer:
A
- (Exam Topic 4)
By default, where does Terraform store its state file?
Correct Answer:
D
By default, the state file is stored in a local file named "terraform.tfstate", but it can also be stored remotely, which works better in a team environment.