HashiCorp Certified: Terraform Associate — Question 108
Which of the following module source paths does not specify a remote module?
Answer options
- A. source = “./modules/consul”
- B. source = “[email protected]:hashicorp/example.git”
- C. source = “github.com/hashicorp/example”
- D. source = “hashicorp/consul/aws”
Correct answer: A
Explanation
The correct answer is A because it specifies a local path to the module rather than a remote source. Options B and C indicate remote repositories, while D points to a module on the Terraform Registry, which is also considered remote.