Skip to content

Commit

Permalink
fix(control-tower): updated boolean logic to get LZ identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
erwaxler authored and johnraws committed Aug 26, 2024
1 parent 8446a05 commit 528f528
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export async function createPipelineStack(
});
// get existing CT details only when Control Tower is enabled
let landingZoneIdentifier: string | undefined;
if (acceleratorEnv.controlTowerEnabled) {
if (acceleratorEnv.controlTowerEnabled === 'Yes' && !acceleratorEnv.enableSingleAccountMode) {
//
// Get Management account credentials
//
Expand Down

0 comments on commit 528f528

Please sign in to comment.