Setup Terraform in AWS
# You can find this script in terrafrm page for AWS providers
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
# It will link to our AWS account uisng access_key and secret_key
provider "aws" {
region = "us-west-1"
}
Last updated