Skip to content

Commit

Permalink
fix: must have a minimum of 900 durationseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
corymhall committed Oct 30, 2023
1 parent 0a0f142 commit 69bf899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class StackDiff {
RoleArn: stack.lookupRole.arn.replace('${AWS::Partition}', 'aws'),
RoleSessionName: 'cdk-diff-action',
ExternalId: stack.lookupRole.assumeRoleExternalId,
DurationSeconds: 300,
DurationSeconds: 900,
},
}) : undefined;
this.client = new CloudFormationClient({
Expand Down

0 comments on commit 69bf899

Please sign in to comment.