From ab43225e21feae36b79e8458f2bc0c368df131f0 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 6 Feb 2021 21:31:57 -0800 Subject: [PATCH] Cost reduction: use cold HDD for EBS volume --- tf/infra.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tf/infra.tf b/tf/infra.tf index 50be404..398b519 100644 --- a/tf/infra.tf +++ b/tf/infra.tf @@ -168,7 +168,8 @@ resource "aws_instance" "server" { resource "aws_ebs_volume" "data" { availability_zone = "${data.aws_region.current.name}b" - size = 100 + size = 125 + type = "sc1" tags = local.tags }