File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ export class CDKBootstrapTask extends sfn.StateMachineFragment {
144144 const createBootstrapInRegion = new sfn . Map ( this , `Bootstrap Account Region Map` , {
145145 itemsPath : `$.regions` ,
146146 resultPath : 'DISCARD' ,
147- maxConcurrency : 16 ,
147+ maxConcurrency : 17 ,
148148 parameters : {
149149 'accountId.$' : '$.accountId' ,
150150 'region.$' : '$$.Map.Item.Value' ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const handler = async (input: Partial<CheckStepInput>) => {
2525 let cfn : CloudFormation ;
2626 if ( accountId && assumeRoleName ) {
2727 const credentials = await sts . getCredentialsForAccountAndRole ( accountId , assumeRoleName ) ;
28- cfn = new CloudFormation ( credentials ) ;
28+ cfn = new CloudFormation ( credentials , region ) ;
2929 } else {
3030 cfn = new CloudFormation ( ) ;
3131 }
You can’t perform that action at this time.
0 commit comments