1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

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
+7
View File
@@ -73,10 +73,17 @@ module "eks" {
node_groups = {
example = {
create_launch_template = true
desired_capacity = 1
max_capacity = 10
min_capacity = 1
disk_size = 50
disk_type = "gp3"
disk_throughput = 150
disk_iops = 3000
instance_types = ["t3.large"]
capacity_type = "SPOT"
k8s_labels = {