0 votes
in Terraform by
What is Terraform Core? Tell us some primary responsibilities of it

1 Answer

0 votes
by

Terraform Core is a binary written in the Go programming language and statically compiled. The compiled binary provides Terraform users with an entry point. The primary responsibilities are as follows:

Infrastructure’s code functionalities include module and configuration file reading and interpolation.

  1. Building a Resource Graph
  2. RPC-based plugin communication
  3. Plan implementation
  4. Resource state management
...