TA-002-P Exam Question 16
When using Terraform in a team it is important for everyone to be working with the same state so that operations will be applied to the same remote objects. Which of the below option is a recommended solution for this?
TA-002-P Exam Question 17
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
TA-002-P Exam Question 18
What features does the hosted service Terraform Cloud provide? (Choose two.)
TA-002-P Exam Question 19
How is the Terraform remote backend different than other state backends such as S3, Consul, etc.?
TA-002-P Exam Question 20
Which one of the following command will rewrite Terraform configuration files to a canonical format and style.
