HashiCorp Certified: Terraform Associate — Question 197
Which of the following statements about Terraform modules is not true?
Answer options
- A. Modules must be publicly accessible
- B. You can call the same module multiple times
- C. A module is a container for one or more resources
- D. Modules can call other modules
Correct answer: A
Explanation
The correct answer is A because Terraform modules do not have to be publicly accessible; they can be local or private. Options B, C, and D are true statements about Terraform modules, as they can be called multiple times, serve as containers for resources, and can invoke other modules.