Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willdady/cdk-iam-credentials-rotator
AWS CDK construct for rotating IAM user credentials and sending to a third party
https://github.com/willdady/cdk-iam-credentials-rotator
aws cdk cdk-construct iam serverless
Last synced: about 2 months ago
JSON representation
AWS CDK construct for rotating IAM user credentials and sending to a third party
- Host: GitHub
- URL: https://github.com/willdady/cdk-iam-credentials-rotator
- Owner: willdady
- License: apache-2.0
- Created: 2022-03-20T06:33:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-28T12:14:19.000Z (over 2 years ago)
- Last Synced: 2024-10-31T08:52:27.035Z (2 months ago)
- Topics: aws, cdk, cdk-construct, iam, serverless
- Language: TypeScript
- Homepage:
- Size: 783 KB
- Stars: 17
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IAM Credentials Rotator
AWS CDK construct for rotating IAM user credentials and sending to a third party.
## Usage
Simply provide a list of user objects where each object contains a `username` of an IAM user which exists in the target account.
```typescript
const myCredentialsHandler = new lambda.Function(this, 'MyCredentialsHandler', {
handler: 'index.handler',
code: lambda.Code.fromAsset('path/to/your/code'),
runtime: lambda.Runtime.NODEJS_14_X,
});new IamCredentialsRotator(this, 'MyCredentialsRotator', {
users: [
{ username: 'homer' },
{ username: 'marge' },
{ username: 'bart' },
{ username: 'lisa' },
{ username: 'maggie' }
],
credentialsHandler: myCredentialsHandler,
});
```Each user object supports an optional `metadata` key which can contain arbitrary string data. Do not store large or sensitive values in `metadata`. The `users` array is stored in a single AWS Parameter Store parameter which has a maximum size limit of 4KB.
The Lambda function, `credentialsHandler`, is called immediately after a new access key is created for a user. The newly created credentials must be retrieved from AWS Secrets Manager using `secretName` included in the function's event.
By default, credentials are rotated once an hour. This can be changed by providing `scheduleDuration` in the constructor.
Below is a minimal boilerplate for your handler function.
```typescript
import {
SecretsManagerClient,
GetSecretValueCommand,
} from '@aws-sdk/client-secrets-manager';const secretsManagerClient = new SecretsManagerClient({});
interface Event {
username: string;
secretName: string;
metadata?: string;
}export async function handler(event: Event) {
const { username, secretName } = event;
const getSecretResponse = await secretsManagerClient.send(
new GetSecretValueCommand({ SecretId: secretName }),
);
const { AccessKeyId, SecretAccessKey }: { [key: string]: string } =
JSON.parse(getSecretResponse.SecretString || '');// Do something with AccessKeyId and SecretAccessKey here e.g. send to a trusted third-party
}
```Once your function exits the underlying AWS Step Functions workflow will wait a period of time before deleting the old credentials. During this period both the old and new credentials for the user exist. At the end of this period the old credentials are deleted.
The amount of time to wait before deleting old credentials defaults to 5 minutes and can be adjusted by setting `cleanupWaitDuration`. This value MUST be less-than `scheduleDuration`.
## Architecture
![Architecture diagram](images/diagram.png)