HashiCorp Terraform Associate 003 Practice Exams
Last updated on Apr 01,2025- Exam Code: Terraform Associate 003
- Exam Name: HashiCorp Certified: Terraform Associate (003)
- Certification Provider: HashiCorp
- Latest update: Apr 01,2025
What is the Terraform style convention for indenting a nesting level compared to the one above it?
- A . With two spaces.
- B . With four spaces.
- C . With three spaces.
- D . With a tab.
Which of the following arguments are required when declaring a Terraform output?
- A . value
- B . description
- C . default
- D . sensitive
How do you specify a module’s version when publishing it to the public terraform Module Registry?
- A . Configuration it in the module’s Terraform code
- B . Mention it on the module’s configuration page on the Terraform Module Registry
- C . The Terraform Module Registry does not support versioning modules
- D . Tag a release in the associated repo
How does the Terraform cloud integration differ from other state backends such as S3, Consul,etc?
- A . It can execute Terraform runs on dedicated infrastructure in Terraform Cloud
- B . It doesn’t show the output of a terraform apply locally
- C . It is only arable lo paying customers
- D . All of the above
You have declared a variable called var.list which is a list of objects that all have an attribute id.
Which options will produce a list of the IDs? Choose two correct answers.
- A . [ var.list [ * ] , id ]
- B . [ for o in var.list: o.Id ]
- C . var.list[*].id
- D . { for o in var.llst: o => o.id }
You have never used Terraform before and would like to test it out using a shared team account for a cloud provider. The shared team account already contains 15 virtual machines (VM). You develop a Terraform configuration containing one VM. perform terraform apply, and see that your VM was created successfully.
What should you do to delete the newly-created VM with Terraform?
- A . The Terraform state file contains all 16 VMs in the team account. Execute terraform destroy and select the newly-created VM.
- B . Delete the Terraform state file and execute terraform apply.
- C . The Terraform state file only contains the one new VM. Execute terraform destroy.
- D . Delete the VM using the cloud provider console and terraform apply to apply the changes to the Terraform state file.
Which of the following is not a valid source path for specifying a module?
- A . source – "github.com/hashicorp/examplePref-ul.0.8M
- B . source = "./module?version=vl.6.0"
- C . source – "hashicorp/consul/aws"
- D . source – "./module"
If a DevOps team adopts AWS CloudFormation as their standardized method for provisioning public cloud resoruces, which of the following scenarios poses a challenge for this team?
- A . The team is asked to manage a new application stack built on AWS-native services
- B . The organization decides to expand into Azure wishes to deploy new infrastructure
- C . The team is asked to build a reusable code based that can deploy resources into any AWS region
- D . The DevOps team is tasked with automating a manual, web console-based provisioning.
You’re building a CI/CD (continuous integration/continuous delivery) pipeline and need to inject sensitive variables into your Terraform run.
How can you do this safely?
- A . Copy the sensitive variables into your Terraform code
- B . Store the sensitive variables in a secure_varS.tf file
- C . Store the sensitive variables as plain text in a source code repository
- D . Pass variables to Terraform with a -var flag