We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a6207 commit 4ef3097Copy full SHA for 4ef3097
src/integration/aws/iam_roles.ts
@@ -118,6 +118,7 @@ export class BDIamRole {
118
const commandParams: iam.CreateRoleRequest = {
119
Path: this.path,
120
RoleName: this.iamRoleName,
121
+ MaxSessionDuration: 12 * 60 * 60, // 12h in seconds, the max!
122
AssumeRolePolicyDocument: JSON.stringify(this.getAssumeRolePolicyDocument()),
123
Tags: [...this.boilingDataTags, ...(this.params.tags ?? [])],
124
};
0 commit comments