Terraform TerraWeek Day 3
Task 1: Create a Terraform Configuration File
Create a file named main.tf with the following content to define an AWS EC2 instance resource:
# Specify the AWS provider and your access credentials
provider "aws" {
region = "us-east-1" # Change this...
paraspahwa.hashnode.dev4 min read