HashiCorp Terraform Associate 003 Exam
HashiCorp Certified: Terraform Associate (Page 8 )

Updated On: 9-Feb-2026

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(s): D



A Terraform provisioner must be nested inside a resource configuration block.

  1. True
  2. False

Answer(s): A

Explanation:

Most provisioners require access to the remote resource via SSH or WinRM, and expect a nested connection block with details about how to connect.


Reference:

https://www.terraform.io/docs/language/resources/provisioners/connection.html



Terraform can run on Windows or Linux, but it requires a Server version of the Windows operating system.

  1. True
  2. False

Answer(s): B



What does the default "local" Terraform backend store?

  1. tfplan files
  2. Terraform binary
  3. Provider plugins
  4. State file

Answer(s): D

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



You have multiple team members collaborating on infrastructure as code (IaC) using Terraform, and want to apply formatting standards for readability.
How can you format Terraform HCL (HashiCorp Configuration Language) code according to standard Terraform style convention?

  1. Run the terraform fmt command during the code linting phase of your CI/CD process
  2. Designate one person in each team to review and format everyone's code
  3. Manually apply two spaces indentation and align equal sign "=" characters in every Terraform file (*.tf)
  4. Write a shell script to transform Terraform files using tools such as AWK, Python, and sed

Answer(s): A

Explanation:

- Indent two spaces for each nesting level.
- When multiple arguments with single-line values appear on consecutive lines at the same nesting level, align their equals signs.


Reference:

https://www.terraform.io/docs/language/syntax/style.html






Post your Comments and Discuss HashiCorp Terraform Associate 003 exam prep with other Community members:

Join the Terraform Associate 003 Discussion