1.

What do you know about Terraform core? What are the primary responsibilities of Terraform core?

Answer»

TERRAFORM Core is a BINARY created in the Go programming language that is statically compiled. The compiled binary is the terraform command line TOOL (CLI), which is the starting point for anyone who wants to use Terraform. The source code can be found at github.com/hashicorp/terraform.

The primary responsibilities of Terraform core includes:

  • READING and interpolating configuration files and modules using infrastructure as code
  • Management of the state of resources
  • Resource Graph Construction
  • Execution of the plan
  • Communication with plugins through RPC


Discussion

No Comment Found