#57 - manage root volume size and type

This commit is contained in:
Bill Wang
2018-07-13 12:30:53 +00:00
parent 2173bbcfa9
commit 0bc357af26
2 changed files with 6 additions and 3 deletions

View File

@@ -37,9 +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}"
volume_size = "${lookup(var.worker_groups[count.index], "root_volume_size", lookup(var.workers_group_defaults, "root_volume_size"))}"
volume_type = "${lookup(var.worker_groups[count.index], "root_volume_type", lookup(var.workers_group_defaults, "root_volume_type"))}"
iops = "${lookup(var.worker_groups[count.index], "root_iops", lookup(var.workers_group_defaults, "root_iops"))}"
delete_on_termination = true
}
}