TA-002-P · Question #278
TA-002-P Question #278: Real Exam Question with Answer & Explanation
The correct answer is C: declared in the configuration. {"question_number": 5, "correct_answer": "C, D", "explanation": "Before a new provider can be used in Terraform, it must be: (C) declared in the configuration - via a required_providers block in the terraform {} block, specifying the source and version constraints; and (D) initia
Question
Select two answers to complete the following sentence: Before a new provider can be used, it must be ______ and _______.
Options
- Aapproved by HashiCorp
- Buploaded to source control
- Cdeclared in the configuration
- Dinitialized
Explanation
{"question_number": 5, "correct_answer": "C, D", "explanation": "Before a new provider can be used in Terraform, it must be: (C) declared in the configuration - via a required_providers block in the terraform {} block, specifying the source and version constraints; and (D) initialized - by running terraform init, which downloads the provider plugin binary from the Terraform Registry into the .terraform directory. HashiCorp approval (A) is not required to use a provider - community and custom providers exist. Uploading to source control (B) is not required; the provider binary is fetched from the registry, not committed to version control.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.