mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-20 16:43:46 +01:00
feat: Enable throughput & iops configs for managed node_groups (#1584)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user