interview-prep
provider "aws" {
  region = "eu-west-2"
}

A provider is the plugin that translates Terraform code into API calls. The provider block configures credentials, region, etc. You can have multiple providers (AWS + Cloudflare + Kubernetes all in the same project) and even multiple instances of the same provider with aliases (e.g., one provider per AWS region).

My notes