From 43f6652bc226d33afee44afdea5ce99f2243b7f7 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 13 Mar 2021 22:05:16 -0800 Subject: [PATCH] Upgrade to t3.small We're running low on memory when pulling the Docker image. --- tf/infra.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf/infra.tf b/tf/infra.tf index 398b519..7bc52b6 100644 --- a/tf/infra.tf +++ b/tf/infra.tf @@ -159,7 +159,7 @@ resource "aws_security_group" "server" { } resource "aws_instance" "server" { - instance_type = "t3.micro" + instance_type = "t3.small" ami = data.aws_ami.server.id availability_zone = "${data.aws_region.current.name}b" security_groups = [aws_security_group.server.name]