From aa62d4b974663f42675dbd9c5907828005dd84e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix-Antoine=20Fortin?= Date: Wed, 23 Oct 2024 11:04:00 -0400 Subject: [PATCH] Increase aws instance volume size to 20gb --- aws/infrastructure.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/infrastructure.tf b/aws/infrastructure.tf index 87682bfd..b3649ad7 100644 --- a/aws/infrastructure.tf +++ b/aws/infrastructure.tf @@ -99,7 +99,7 @@ resource "aws_instance" "instances" { ebs_optimized = true root_block_device { volume_type = lookup(each.value, "disk_type", "gp2") - volume_size = lookup(each.value, "disk_size", 10) + volume_size = lookup(each.value, "disk_size", 20) } tags = {