Posts

Showing posts with the label Terraform Interwview Questions

Terraform Interwview Questions

Image
  1.  What is Terraform? Terraform is an open-source infrastructure as a code software tool created by HashiCorp It is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions. 2.  How to Terraform work? Terraform produce an execution plan delineate, what it will do to reach the desired state, and then executes it to build the described infrastructure. As the configuration changes, Terraform is able to determine what changed and create incremental execution plans which can be applied. 3.  Explain the uses of Terraform CLI? Terraform is controlled via a very easy to use the command-line interface (CLI) it is only a single command-line application: terraform. This application then takes a subcommand such as “apply” or “plan”. The complete list of subcommands is in the navigation to the left. 4.  what are the features of Terraform? Some featu...