From a9efff419e4251dadd56e1f032df74ed9a2bc6c2 Mon Sep 17 00:00:00 2001 From: David Mejia Date: Thu, 9 Nov 2023 12:55:32 -0500 Subject: [PATCH] scale up worker volume --- infrastructure/batch/launch_templates.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infrastructure/batch/launch_templates.tf b/infrastructure/batch/launch_templates.tf index cac79476d..86c791180 100644 --- a/infrastructure/batch/launch_templates.tf +++ b/infrastructure/batch/launch_templates.tf @@ -16,7 +16,9 @@ resource "aws_launch_template" "data_refinery_worker" { device_name = "/dev/sdf" ebs { volume_type = "st1" - volume_size = 500 + # Provide the workers with 1TB of storage + # for working with more experiments concurrently. + volume_size = 1000 encrypted = true delete_on_termination = true }