Skip to content

Commit 674ab7b

Browse files
authored
chore: Correct example where a list data type is required (terraform-aws-modules#2387)
1 parent 1a33f9e commit 674ab7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/fargate_profile/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module "eks" {
9292
{ namespace = "kube-system" }
9393
]
9494
# We want to create a profile per AZ for high availability
95-
subnet_ids = element(module.vpc.private_subnets, i)
95+
subnet_ids = [element(module.vpc.private_subnets, i)]
9696
}
9797
}
9898
)

0 commit comments

Comments
 (0)