@renovosolutions/cdk-library-aws-iam-access-key
v0.0.37
Published
AWS CDK Construct Library for generating AWS access keys and storing them in Secrets Manager
Downloads
53
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,
});