From 70b5ea6422fec238c523752a796c5d88fe9ce640 Mon Sep 17 00:00:00 2001 From: nageshk06 <43815644+nageshk06@users.noreply.github.com> Date: Tue, 19 May 2026 08:35:08 +0530 Subject: [PATCH] Modify AWS provider region and instance type Updated AWS region to us-east-1 and instance type to t3.micro. --- ec2/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ec2/main.tf b/ec2/main.tf index b70169b..8dc701b 100644 --- a/ec2/main.tf +++ b/ec2/main.tf @@ -11,12 +11,12 @@ terraform { provider "aws" { profile = "default" - region = "us-east-2" + region = "us-east-1" } resource "aws_instance" "app_server" { ami = "ami-064ff912f78e3e561" - instance_type = "t2.micro" + instance_type = "t3.micro" tags = { Name = "ExampleAppServerInstance"