#57 - manage root volume size and type

This commit is contained in:
Bill Wang
2018-07-09 23:59:34 +00:00
parent f385415c88
commit 2173bbcfa9
3 changed files with 24 additions and 1 deletions

View File

@@ -37,6 +37,9 @@ resource "aws_launch_configuration" "workers" {
}
root_block_device {
volume_size = "${var.root_volume_size}"
volume_type = "${var.root_volume_type}"
iops = "${var.root_iops}"
delete_on_termination = true
}
}