mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-27 11:51:07 +01:00
chore: Correct example where a list data type is required (#2387)
This commit is contained in:
@@ -92,7 +92,7 @@ module "eks" {
|
|||||||
{ namespace = "kube-system" }
|
{ namespace = "kube-system" }
|
||||||
]
|
]
|
||||||
# We want to create a profile per AZ for high availability
|
# We want to create a profile per AZ for high availability
|
||||||
subnet_ids = element(module.vpc.private_subnets, i)
|
subnet_ids = [element(module.vpc.private_subnets, i)]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user