InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by terraform init in the context of Terraform? |
|
Answer» The terraform init command creates a working directory in which Terraform CONFIGURATION files can be FOUND. After creating a new Terraform configuration or cloning an OLD one from version control, run this command first. It is safe to use this command more than once. Despite the fact that successive runs may result in errors, this command will never overwrite your current SETTINGS or state. Syntax: terraform init [options] The following options can be used in conjunction with the init command :
|
|