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 b11b158 commit 2f5c677Copy full SHA for 2f5c677
src/deployments/cdk/src/common/iam-assets.ts
@@ -59,6 +59,7 @@ export class IamAssets extends cdk.Construct {
59
effect: statement.Effect === 'Allow' ? iam.Effect.ALLOW : iam.Effect.DENY,
60
actions: typeof statement.Action === 'string' ? [statement.Action] : statement.Action,
61
resources: typeof statement.Resource === 'string' ? [statement.Resource] : statement.Resource,
62
+ conditions: statement.Condition,
63
}),
64
);
65
}
0 commit comments