Free TA-002-P Exam Dumps

Question 26

- (Exam Topic 2)
The terraform init command is always safe to run multiple times, to bring the working directory up to date with changes in the configuration. Though subsequent runs may give errors, this command will never delete your existing configuration or state.

Correct Answer:B
https://www.terraform.io/docs/commands/init.html

Question 27

- (Exam Topic 1)
Which of the following is allowed as a Terraform variable name?

Correct Answer:B
"The name of a variable can be any valid identifier except the following: source, version, providers, count, for_each, lifecycle, depends_on, locals." https://www.terraform.io/language/values/variables

Question 28

- (Exam Topic 2)
How does Terraform handle working with so many providers?

Correct Answer:B
Terraform is built on a plugin-based architecture. All providers and provisioners that are used in Terraform configurations are plugins, even the core types such as AWS and Heroku. Users of Terraform are able to write new plugins in order to support new functionality in Terraform.

Question 29

- (Exam Topic 2)
What allows you to conveniently switch between multiple instances of a single configuration within its single backend?

Correct Answer:D
Named workspaces allow conveniently switching between multiple instances of a single configuration within its single backend. ... A common use for multiple workspaces is to create a parallel, distinct copy of a set of infrastructure in order to test a set of changes before modifying the main production infrastructure.
Workspaces, allowing multiple states to be associated with a single configuration. The configuration still has only one backend, but multiple distinct instances of that configuration to be deployed without configuring a new backend or changing authentication credentials.
https://www.terraform.io/docs/state/workspaces.html

Question 30

- (Exam Topic 1)
FILL BLANK
You need to specify a dependency manually.
What resource meta-parameter can you use to make sure Terraform respects the dependency?
Type your answer in the field provided. The text field is not case-sensitive and all variations of the correct answer are accepted.
Solution:
Reference: https://www.terraform.io/docs/language/functions/file.html

Does this meet the goal?

Correct Answer:A