mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-17 17:22:13 +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" }
|
||||
]
|
||||
# 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