feat: Enable throughput & iops configs for managed node_groups (#1584)

This commit is contained in:
Junaid Ali
2021-10-07 14:19:23 +01:00
committed by GitHub
parent 8866569d53
commit b177806614
4 changed files with 14 additions and 1 deletions

View File

@@ -37,6 +37,8 @@ resource "aws_launch_template" "workers" {
ebs {
volume_size = lookup(each.value, "disk_size", null)
volume_type = lookup(each.value, "disk_type", null)
iops = lookup(each.value, "disk_iops", null)
throughput = lookup(each.value, "disk_throughput", null)
encrypted = lookup(each.value, "disk_encrypted", null)
kms_key_id = lookup(each.value, "disk_kms_key_id", null)
delete_on_termination = true