Package Exports
- @renovosolutions/cdk-library-aws-iam-access-key
- @renovosolutions/cdk-library-aws-iam-access-key/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@renovosolutions/cdk-library-aws-iam-access-key) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
AWS CDK Construct for IAM User Access Keys
This construct creates IAM user access keys securely.
Warning This is a WIP project
Overview
- Uses a custom resource to generate AWS credentials
- Uploads the resulting credentials to AWS Secrets Manager
Usage examples
See API doc for full details
typescript example:
const user = new iam.User(this, 'exampleUser')
new AccessKey(this, 'iamUserAccessKeyExample', {
user,
});