Skip to content

Commit

Permalink
Increase volume size for aws spot instance
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Nov 11, 2024
1 parent 3b5212a commit 90a0524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/infrastructure.tf
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ resource "aws_spot_instance_request" "spot_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 = {
Expand Down

0 comments on commit 90a0524

Please sign in to comment.