Skip to content

Commit

Permalink
Merge pull request #36 from utilitywarehouse/increase-root-vol
Browse files Browse the repository at this point in the history
increase root volume size to get more iops/allow more burst
  • Loading branch information
george-angel authored Apr 1, 2019
2 parents d26e958 + 1639757 commit c1fe6de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion masters.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ resource "aws_launch_configuration" "master" {
# Storage
root_block_device {
volume_type = "gp2"
volume_size = 50
volume_size = 100
}
}

Expand Down
4 changes: 2 additions & 2 deletions workers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ resource "aws_launch_configuration" "worker" {
}

root_block_device {
volume_size = 50
volume_size = 100
volume_type = "gp2"
}
}
Expand All @@ -79,7 +79,7 @@ resource "aws_launch_configuration" "worker-spot" {
}

root_block_device {
volume_size = 50
volume_size = 100
volume_type = "gp2"
}
}
Expand Down

0 comments on commit c1fe6de

Please sign in to comment.