Terraform Init

The first thing you'll need to do when you have Terraform code to run is initialize the directory. This will download the providers code needed, configure and lock the versions, and configure any state storage options you may have. we'll cover all of this over the next several lessons, but the most important thing to note is that Terraform init is required before you can use Terraform to deploy. Let's check it out. 


https://developer.hashicorp.com/terraform/cli/commands/init

Complete and Continue