Terraform Associate Exam QuestionsBrowse all questions from this exam

Terraform Associate Exam - Question 315


Terraform providers are part of the Terraform core binary.

Show Answer
Correct Answer: B

Terraform providers are not part of the Terraform core binary. The core functionality of Terraform is separated from the providers, which are implemented as plugins. Terraform core communicates with these plugins using remote procedure calls (RPC). This separation allows Terraform to support a wide variety of providers and services by loading the necessary plugins.

Discussion

1 comment
Sign in to comment
inkedia3Option: B
Mar 22, 2024

Terraform is logically split into two main parts: Terraform Core and Terraform Plugins. Terraform Core uses remote procedure calls (RPC) to communicate with Terraform Plugins, and offers multiple ways to discover and load plugins to use. Terraform Plugins expose an implementation for a specific service, such as AWS, or provisioner, such as bash.

090200f
Aug 5, 2024

agreed