Skip to content

Commit

Permalink
feat: add iam policies, roles, users and user groups (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
rehanvdm authored Jan 9, 2025
1 parent cb6acb2 commit f6a48a1
Show file tree
Hide file tree
Showing 20 changed files with 4,573 additions and 293 deletions.
4 changes: 4 additions & 0 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 25 additions & 4 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
'table',
'@aws-sdk/client-identitystore',
'@aws-sdk/client-sso-admin',
'@aws-sdk/client-iam',
],
/* Build dependencies for this repo/module. */
devDeps: ['husky', '@types/aws-lambda', '@types/aws-sdk', '@types/node'],
Expand All @@ -75,7 +76,13 @@ const project = new awscdk.AwsCdkConstructLibrary({

project.bundler.addBundle('./src/constructs/iam-identity-center/identity-store-user-lambda/', {
platform: 'node',
target: 'node20',
target: 'node18',
sourcemap: true,
externals: ['aws-sdk'],
});
project.bundler.addBundle('./src/constructs/iam/lambda/iam-account-alias/', {
platform: 'node',
target: 'node18',
sourcemap: true,
externals: ['aws-sdk'],
});
Expand Down
Loading

0 comments on commit f6a48a1

Please sign in to comment.