1. Providers Providers are plugins that Terraform uses to interact with cloud providers, SaaS providers, and other APIs. Example: # Define the provider (AWS in this case) provider "aws" { region = "us-west-2" } 2. Multi-Region To manage resources ...