From e0a98967386c41662305a02c57f61be841359394 Mon Sep 17 00:00:00 2001 From: Andrea Cappelletti Date: Fri, 26 Jun 2026 13:19:39 -0400 Subject: [PATCH] Upgrade web instance to m6i.2xlarge, EBS to gp3 --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index e096db7..c2f77be 100644 --- a/main.tf +++ b/main.tf @@ -1,10 +1,10 @@ resource "aws_instance" "web" { ami = "ami-0c55b159cbfafe1f0" - instance_type = "m5.xlarge" + instance_type = "m6i.2xlarge" root_block_device { volume_size = 50 - volume_type = "gp2" + volume_type = "gp3" } }