From 693878a51a660c17e5e2f80b7a27d97646459d04 Mon Sep 17 00:00:00 2001 From: NAMSETH <78471936+NAMSETH@users.noreply.github.com> Date: Sun, 12 Jul 2026 01:22:28 +0530 Subject: [PATCH] Change AWS region and instance type in main.tf Configuration Update --- ec2/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ec2/main.tf b/ec2/main.tf index f55bdd8..128d12f 100644 --- a/ec2/main.tf +++ b/ec2/main.tf @@ -11,12 +11,12 @@ terraform { provider "aws" { profile = "default" - region = "us-west-2" + region = "us-east-1" } resource "aws_instance" "app_server" { ami = "ami-830c94e3" - instance_type = "t2.micro" + instance_type = "t3.micro" tags = { Name = "ExampleAppServerInstance"