terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 3.0" } } } # Configure the AWS Provider provider "aws" { profile = "default" # should match ~/.aws/config region = "us-east-2" }