chore: Correct example where a list data type is required (#2387)

This commit is contained in:
Bryant Biggs
2023-01-06 11:03:13 -05:00
committed by GitHub
parent 1a33f9e781
commit 674ab7b7f2

View File

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