TA-002-P Dumps

TA-002-P Braindumps TA-002-P Real Questions TA-002-P Practice Test

TA-002-P Actual Questions


HashiCorp


TA-002-P


HashiCorp Certified: Terraform Associate 2023


https://killexams.com/pass4sure/exam-detail/TA-002-P


Question: 277


What is the default backend for Terraform?

  1. consul

  2. gcs

  3. local

  4. etcd


Answer: C Explanation:

By default, Terraform uses the "local" backend, which is the normal behavior of Terraform you’re used to. https://www.terraform.io/docs/backends/index.html

Question: 278


What is the default backend for Terraform?

  1. consul

  2. gcs

  3. local

  4. etcd


Answer: C Explanation:

By default, Terraform uses the "local" backend, which is the normal behavior of Terraform you’re used to. https://www.terraform.io/docs/backends/index.html

Question: 279


Please identify the offerings which are unique to Terraform Enterprise, and not available in either Terraform OSS, or Terraform Cloud. Select four.

  1. Audit Logs

  2. Private Network Connectivity

  3. VCS Integration

  4. Sentinel

  5. Clustering


Answer: A,B,E Explanation:

https://www.hashicorp.com/products/terraform/pricing/


Question: 280


Terraform variables and outputs that set the "description" argument will store that description in the state file.

  1. True

  2. False


Answer: B Explanation:

Reference: https://www.terraform.io/docs/language/values/outputs.html

A provider configuration block is required in every Terraform configuration. Example:


  1. True

  2. False


Answer: A Explanation:

Reference: https://github.com/hashicorp/terraform/issues/17928


Question: 282


Terraform providers are always installed from the Internet.

  1. True

  2. False


Answer: B Explanation:

Terraform configurations must declare which providers they require, so that Terraform can install and use them. Reference: https://www.terraform.io/docs/language/providers/configuration.html

Question: 283


Where does the Terraform local backend store its state?

  1. In the /tmp directory

  2. In the terraform.tfvars file

  3. In the terraform.tfstate file

  4. In the user’s .terraformrc file


Answer: C Explanation:

The local backend stores state on the local filesystem, locks that state using system APIs, and performs operations locally. Reference: https://www.terraform.io/docs/language/settings/backends/local.html

Question: 284


Which of the following command can be used to view the specified version constraints for all providers used in the current configuration.

  1. terraform providers

  2. terraform state show

  3. terraform provider

  4. terraform plan


Answer: A Explanation:

Use the terraform providers command to view the specified version constraints for all providers used in the current configuration. https://www.terraform.io/docs/configuration/providers.html

Which Terraform command will force a marked resource to be destroyed and recreated on the next apply?

  1. terraform fmt

  2. terraform destroy

  3. terraform taint

  4. terraform refresh


Answer: C Explanation:

The terraform taint command manually marks a Terraform-managed resource as tainted, forcing it to be destroyed and recreated on the next apply.


This command will not modify infrastructure, but does modify the state file in order to mark a resource as tainted. Once a resource is marked as tainted, the next plan will show that the resource will be destroyed and recreated and the next apply will implement this change. Forcing the recreation of a resource is useful when you want a certain side effect of recreation that is not visible in the attributes of a resource. For example: re-running provisioners will cause the node to be different or rebooting the machine from a base image will cause new startup scripts to run.


Note that tainting a resource for recreation may affect resources that depend on the newly tainted resource. For example, a DNS resource that uses the IP address of a server may need to be modified to reflect the potentially new IP address of a tainted server. The plan command will show this if this is the case.


https://www.terraform.io/docs/commands/taint.html


Question: 286


If a module uses a local variable, you can expose that value with a terraform output.

  1. True

  2. False


Answer: A Explanation:

Output values are like function return values. Reference:

https://www.terraform.io/docs/language/values/locals.html https://www.terraform.io/docs/language/values/outputs.html


Question: 287


Why would you use the terraform taint command?

  1. When you want to force Terraform to destroy a resource on the next apply

  2. When you want to force Terraform to destroy and recreate a resource on the next apply

  3. When you want Terraform to ignore a resource on the next apply

  4. When you want Terraform to destroy all the infrastructure in your workspace


Answer: B Explanation:

The terraform taint command manually marks a Terraform-managed resource as tainted, forcing it to be destroyed and recreated on the next apply. Reference: https://www.terraform.io/docs/cli/commands/taint.html

Question: 288


When using a module block to reference a module stored on the public Terraform Module Registry such as:


  1. Modules stored on the public Terraform Module Registry do not support versioning

  2. Append ?ref=v1.0.0 argument to the source path

  3. Add version = "1.0.0" attribute to module block

  4. Nothing C modules stored on the public Terraform Module Registry always default to version 1.0.0


Answer: A Explanation:

Reference: https://www.terraform.io/docs/language/modules/sources.html


Question: 289

Question: 290


Which of the following is the correct way to pass the value in the variable num_servers into a module with the input servers?

  1. servers = num_servers

  2. servers = variable.num_servers

  3. servers = var(num_servers)

  4. servers = var.num_servers


Answer: A


Question: 291


You have created 2 workspaces PROD and RQ

  1. You have switched to RQA and provisioned RQA infrastructure from this workspace. Where is your state file stored?

  2. terraform.tfstate.d

  3. terraform.d

  4. terraform.tfstate.RQA

  5. terraform.tfstate


Answer: A


Question: 292


Remove old peers from the CM’s list.


Answer: C


Question: 293


By default, a defined provisioner is a creation-time provisioner.

  1. True

  2. False


Answer: A Explanation:

https://www.terraform.io/docs/provisioners/index.html


Question: 294


What is the default backend for Terraform?

  1. consul

  2. gcs

  3. local

  4. etcd