-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

HashiCorp Infrastructure Automation Certification Guide
By :

Explanation: The terraform init
command is used to perform initialization and download the respective modules, providers, and plugins. It also initializes the backend config. You can read about terraform init
at https://www.terraform.io/docs/commands/init.html.
Explanation: The terraform plan
lets you know what resources it is going to update or create to achieve the desired state defined in the configuration file. For more information, you can read https://www.terraform.io/docs/commands/plan.html.
Explanation: Terraform can take an input variable value in multiple ways.
Explanation: The terraform validate
command will help you check if there is any sort of syntax error.
Explanation: The terraform destroy
command will help you to delete infrastructure that has been provisioned using Terraform...