Skip to content

Commit b961751

Browse files
committed
fix export
1 parent 5a031d3 commit b961751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cdk/stacks/VpcResourcesStack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class VpcResourcesStack extends Stack {
128128
}
129129

130130
let privateSubnetIds = []
131-
for (const [i, subnet] of vpc.publicSubnets.entries()){
131+
for (const [i, subnet] of vpc.privateSubnets.entries()){
132132
const subnetIdentifier = String.fromCharCode("A".charCodeAt(0) + i)
133133
new CfnOutput(this, `PrivateSubnet${subnetIdentifier}`, {
134134
value: subnet.subnetId,

0 commit comments

Comments
 (0)