Free TA-002-P Exam Dumps

No Installation Required, Instantly Prepare for the TA-002-P exam and please click the below link to start the TA-002-P Exam Simulator with a real TA-002-P practice exam questions.
Use directly our on-line TA-002-P exam dumps materials and try our Testing Engine to pass the TA-002-P which is always updated.

  • Exam Code: TA-002-P
  • Exam Title: HashiCorp Certified: Terraform Associate
  • Vendor: HashiCorp
  • Exam Questions: 92
  • Last Updated: September 28th,2024

Question 1

- (Exam Topic 3)
Terraform Enterprise currently supports running under which the following operating systems?

Correct Answer:ABCDEF
Terraform Enterprise runs on Linux instances, and you must prepare a running Linux instance for Terraform Enterprise before running the installer. You will start and manage this instance like any other server.
Terraform Enterprise currently supports running under the following operating systems: Standalone deployment:
Debian 7.7+
Ubuntu 14.04.5 / 16.04 / 18.04
Red Hat Enterprise Linux 7.4 - 7.8 CentOS 6.x / 7.4 - 7.8
Amazon Linux 2014.03 / 2014.09 / 2015.03 / 2015.09 / 2016.03 / 2016.09 / 2017.03 / 2017.09 / 2018.03 / 2.0
Oracle Linux 7.4 - 7.8 https://www.terraform.io/docs/enterprise/before-installing/index.html

Question 2

- (Exam Topic 4)
As a member of an operations team that uses infrastructure as code (laC) practices, you are tasked with making a change to an infrastructure stack running in a public cloud. Which pattern would follow laC best practices for making a change?

Correct Answer:C

Question 3

- (Exam Topic 4)
You want to share Terraform state with your team, store it securely and provide state locking. How would you do this? Choose three correct answers.

Correct Answer:ABE

Question 4

- (Exam Topic 1)
If you manually destroy infrastructure, what is the best practice reflecting this change in Terraform?

Correct Answer:A
https://www.terraform.io/cli/commands/refresh#:~:text=The terraform refresh command reads%

Question 5

- (Exam Topic 2)
You do not need to specify every required argument in the backend configuration. Omitting certain arguments may be desirable to avoid storing secrets, such as access keys, within the main configuration. When some or all of the arguments are omitted, we call this a ______.

Correct Answer:D
You do not need to specify every required argument in the backend configuration. Omitting certain arguments may be desirable to avoid storing secrets, such as access keys, within the main configuration. When some or all of the arguments are omitted, we call this a partial configuration.
With a partial configuration, the remaining configuration arguments must be provided as part of the initialization process. There are several ways to supply the remaining arguments:
* Interactively: Terraform will interactively ask you for the required values, unless interactive input is disabled. Terraform will not prompt for optional values.
* File: A configuration file may be specified via the init command line. To specify a file, use the
-backend-config=PATH option when running terraform init. If the file contains secrets it may be kept in a secure data store, such as Vault, in which case it must be downloaded to the local disk before running Terraform.
* Command-line key/value pairs: Key/value pairs can be specified via the init command line. Note that many shells retain command-line flags in a history file, so this isn't recommended for secrets. To specify a single key/value pair, use the -backend-config="KEY=VALUE" option when running terraform init.
https://www.terraform.io/docs/backends/config.html#partial-configuration