We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e28e2 commit 8f590e0Copy full SHA for 8f590e0
src/deployments/cdk/src/apps/phase-2.ts
@@ -122,7 +122,7 @@ export async function deploy({
122
}
123
// eslint-disable-next-line @typescript-eslint/no-explicit-any
124
const nfwNameToIdMap = vpcOutput.nfw?.reduce((acc: any, nfwConfig) => {
125
- const vpcEndpointAz = nfwConfig.az.substring(-1);
+ const vpcEndpointAz = nfwConfig.az.slice(-1);
126
const vpcEndpointId = nfwConfig.vpcEndpoint;
127
const mapSubnet = nfwConfig.subnets.filter(subnet => {
128
return vpcEndpointAz === subnet.az;
0 commit comments