mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-25 10:51:06 +01:00
feat: Added throughput support for root and EBS disks (#1445)
This commit is contained in:
@@ -73,5 +73,22 @@ module "eks" {
|
||||
public_ip = true
|
||||
elastic_inference_accelerator = "eia2.medium"
|
||||
},
|
||||
{
|
||||
name = "worker-group-4"
|
||||
instance_type = "t3.small"
|
||||
asg_desired_capacity = 1
|
||||
public_ip = true
|
||||
root_volume_size = 150
|
||||
root_volume_type = "gp3"
|
||||
root_volume_throughput = 300
|
||||
additional_ebs_volumes = [
|
||||
{
|
||||
block_device_name = "/dev/xvdb"
|
||||
volume_size = 100
|
||||
volume_type = "gp3"
|
||||
throughput = 150
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user