Terraform Providers
- AWS supports a ton of different types of infrastructure
- Manages complexity with "providers" (they're like plugins)
- Providers define how Terraform works with a type of infrastructure
provider "aws" {
version = "~> 3.0"
region = "us-east-1"
alias = "us-east-1"
}
16 / 18