From cd8e403471ee04797bc75519334ab228f9159f32 Mon Sep 17 00:00:00 2001 From: Akash Askoolum Date: Fri, 22 Jan 2021 13:08:05 +0000 Subject: [PATCH] Update src/constructs/ec2/vpc.ts Co-authored-by: Stephen Geller --- src/constructs/ec2/vpc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constructs/ec2/vpc.ts b/src/constructs/ec2/vpc.ts index c9073395c..918b18ddf 100644 --- a/src/constructs/ec2/vpc.ts +++ b/src/constructs/ec2/vpc.ts @@ -30,7 +30,7 @@ export class GuVpc { * As a hacky workaround, we have moved to using the fromSubnetAttributes method and hardcoded an empty value * for the routeTableId prop. This prevents the error and, when tested on existings stacks, results in no change to the CFN output * - * TODO: Understand VPCs and Subnets better and developer a better solution to this problem + * TODO: Understand VPCs and Subnets better and develop a better solution to this problem */ return subnets.map((subnetId) => Subnet.fromSubnetAttributes(scope, `subnet-${subnetId}`, { subnetId, routeTableId: " " })