follow this code to create infrastructure for AWS. terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 4.0" } } } Configure the AWS Provider provider "aws" { region = "us-east-1" access_key = "AKIARMGMXWTS55YMEAX4" secret_...