File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/deployments/cdk/src/apps Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ import { logArchiveReadOnlyAccess } from '../deployments/s3/log-archive-read-acc
4444import * as metadataDeployment from '../deployments/metadata-collection' ;
4545import { IamRoleOutputFinder } from '@aws-accelerator/common-outputs/src/iam-role' ;
4646import * as alb from '../deployments/alb' ;
47+ import { loadAssignedSubnetCidrPool } from '@aws-accelerator/common/src/util/common' ;
4748
4849/**
4950 * This is the main entry point to deploy phase 2
@@ -89,6 +90,8 @@ export async function deploy({
8990 outputs,
9091 } ) ;
9192
93+ const assignedSubnetCidrPools = await loadAssignedSubnetCidrPool ( context . subnetCidrPoolAssignedTable ) ;
94+
9295 await createTrail . step1 ( {
9396 accountBuckets,
9497 accountStacks,
@@ -288,6 +291,7 @@ export async function deploy({
288291 vpcConfigs,
289292 sharedAccountKey,
290293 installerVersion : context . installerVersion ,
294+ subnetPools : assignedSubnetCidrPools ,
291295 } ) ;
292296
293297 // Add Tags Output
You can’t perform that action at this time.
0 commit comments