HashiCorp Certified: Terraform Associate — Question 170

A developer accidentally launched a VM (virtual machine) outside of the Terraform workflow and ended up with two servers with the same name. They don’t know which VM Terraform manages but do have a list of all active VM IDs.

Which of the following methods could you use to discover which instance Terraform manages?

Answer options

Correct answer: C

Explanation

The correct answer is C because running 'terraform state list' allows you to see all resources managed by Terraform, and 'terraform state show' provides details about each resource, including the VM ID. Options A and B do not provide a direct method to identify the managed VM, while D does not clarify the specific IDs associated with the state.