From 29f868873a813238ea01397063e6190301ffa61c Mon Sep 17 00:00:00 2001 From: Enrico Bausenhart Date: Fri, 18 Jul 2025 10:35:32 +0200 Subject: [PATCH] feat: use t3 large instance type for aws --- infrastructure/terraform/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/variables.tf b/infrastructure/terraform/variables.tf index abb33223..38b8317b 100644 --- a/infrastructure/terraform/variables.tf +++ b/infrastructure/terraform/variables.tf @@ -31,7 +31,7 @@ variable "ami_id" { variable "instance_type" { description = "Instance type for the EC2 instance" type = string - default = "t3.small" + default = "t3.large" } variable "aws_ec2_private_key" {