diff --git a/masters.tf b/masters.tf index 1b94780..e79a1c5 100644 --- a/masters.tf +++ b/masters.tf @@ -67,7 +67,7 @@ resource "aws_launch_configuration" "master" { # Storage root_block_device { volume_type = "gp2" - volume_size = 50 + volume_size = 100 } } diff --git a/workers.tf b/workers.tf index 8d57516..d2c1baa 100644 --- a/workers.tf +++ b/workers.tf @@ -60,7 +60,7 @@ resource "aws_launch_configuration" "worker" { } root_block_device { - volume_size = 50 + volume_size = 100 volume_type = "gp2" } } @@ -79,7 +79,7 @@ resource "aws_launch_configuration" "worker-spot" { } root_block_device { - volume_size = 50 + volume_size = 100 volume_type = "gp2" } }