Skip to content

Commit

Permalink
Remove bootstrap version cfn parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Tanner Lewis <[email protected]>
  • Loading branch information
lewijacn committed Jan 3, 2025
1 parent f2c33ee commit 3215506
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions deployment/migration-assistant-solution/bin/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ const getProps = () => {
const app = new App();
const infraProps = getProps()
new SolutionsInfrastructureStack(app, "Migration-Assistant-Infra-Import-VPC", {
synthesizer: new DefaultStackSynthesizer(),
synthesizer: new DefaultStackSynthesizer({
generateBootstrapVersionRule: false
}),
createVPC: false,
...infraProps
});
new SolutionsInfrastructureStack(app, "Migration-Assistant-Infra-Create-VPC", {
synthesizer: new DefaultStackSynthesizer(),
synthesizer: new DefaultStackSynthesizer({
generateBootstrapVersionRule: false
}),
createVPC: true,
...infraProps
});

0 comments on commit 3215506

Please sign in to comment.