From 920d58b781e46277f3b3484fc77184ad2e1f244d Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 13 Mar 2021 23:07:27 -0800 Subject: [PATCH] Upgrade to gp3 This is required for sufficient IO performance to actually pull a Docker image. --- tf/infra.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf/infra.tf b/tf/infra.tf index 7bc52b6..b0c3b5b 100644 --- a/tf/infra.tf +++ b/tf/infra.tf @@ -169,7 +169,7 @@ resource "aws_instance" "server" { resource "aws_ebs_volume" "data" { availability_zone = "${data.aws_region.current.name}b" size = 125 - type = "sc1" + type = "gp3" tags = local.tags }