Skip to content

Commit 2b9cc24

Browse files
hickeydh-awsDustin Hickey
andauthored
fixed stack verify (#794)
Co-authored-by: Dustin Hickey <hickeydh@amazon.amazon.com>
1 parent a0b7382 commit 2b9cc24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/cdk/src/tasks/cdk-bootstrap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

src/core/runtime/src/create-stack/verify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)