feat: Added throughput support for root and EBS disks (#1445)

This commit is contained in:
Junaid Ali
2021-09-02 11:28:13 +01:00
committed by GitHub
parent 19ce95d7b6
commit bcea0708e6
5 changed files with 31 additions and 4 deletions

View File

@@ -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
},
]
},
]
}