Question 91
Where does the Terraform local backend store its state?
Question 92
Terraform Enterprise (also referred to as pTFE) requires what type of backend database for a clustered deployment?
Question 93
You have a Terraform configuration file where a variable itemNum is defined as follows:
variable "itemNum" { default = 3}
You also have a defined the following environment variables in your shell: TF_itemNum =6, TF_VAR_itemNum =9. You also have a terraform.tfvars file with the following contents itemNum = 7 When you run the following apply command, what is the value assigned to the itemNum variable?
terraform apply -var itemNum =4
variable "itemNum" { default = 3}
You also have a defined the following environment variables in your shell: TF_itemNum =6, TF_VAR_itemNum =9. You also have a terraform.tfvars file with the following contents itemNum = 7 When you run the following apply command, what is the value assigned to the itemNum variable?
terraform apply -var itemNum =4
Question 94
The canonical format may change in minor ways between Terraform versions, so after upgrading Terraform it is recommended to proactively run.
Question 95
Which of the following is not a valid Terraform collection type?