From 674ab7b7f2aa5163b3d9dbdafb7cb1ec910cd9de Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Fri, 6 Jan 2023 11:03:13 -0500 Subject: [PATCH] chore: Correct example where a list data type is required (#2387) --- examples/fargate_profile/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fargate_profile/main.tf b/examples/fargate_profile/main.tf index ac24389..1e92855 100644 --- a/examples/fargate_profile/main.tf +++ b/examples/fargate_profile/main.tf @@ -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)] } } )