From 2506f9eb2da87248ddaa27384ee8652d1be6dd39 Mon Sep 17 00:00:00 2001 From: parinitasinha <104484038+parinitasinha@users.noreply.github.com> Date: Tue, 19 May 2026 08:34:31 +0530 Subject: [PATCH] Change instance type from t2.micro to t3.micro --- ec2/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ec2/main.tf b/ec2/main.tf index b70169b..e947e1c 100644 --- a/ec2/main.tf +++ b/ec2/main.tf @@ -16,7 +16,7 @@ provider "aws" { resource "aws_instance" "app_server" { ami = "ami-064ff912f78e3e561" - instance_type = "t2.micro" + instance_type = "t3.micro" tags = { Name = "ExampleAppServerInstance"