Learn how Terraform providers work and create your first resources using the local provider to manage files on your machine.
Set up a fresh directory for this lesson's Terraform configuration.
mkdir -p ~/terraform-practice/lesson-102cd ~/terraform-practice/lesson-102Each Terraform project should have its own directory. This keeps configurations isolated and prevents conflicts.
You're now in the lesson-102 directory, ready to create Terraform files.