The Trusted Advisor Exposed Keys CloudWatch Event Monitor demonstrates how to use AWS Step Functions to orchestrate a serverless AWS Lambda workflow in response to an Amazon CloudWatch Event generated by AWS Trusted Advisor.
On detection of a Trusted Advisor Exposed Access Key CloudWatch Event this workflow deletes the exposed IAM Access Key, summarizes the recent API activity for the exposed key, and sends the summary message to an Amazon SNS Topic to notify the subscribers.
This repository contains sample code for all the AWS Lambda functions depicted in the diagram below as well as an AWS CloudFormation template for creating the functions and related resources.
- An IAM Access Key is inadvertently uploaded to one of the popular code repositories (ex: github) monitored by Trusted Advisor.
- Trusted Advisor detects the key, generating a Trusted Advisor Exposed Access Keys CloudWatch Event. AWS also temporarily restricts the API calls the key is able to make.
- A configured CloudWatch Events rule matches this event, triggering an execution of the
ExposedKey
Step Functions state machine, which has the following sub-steps:- Delete the exposed IAM Access Key Pair
- Summarize recent API activity for the user from CloudTrail
- Send security notification message containing summary to
SecurityNotificationTopic
SNS Topic.
The backend infrastructure can be deployed in US East - N. Virginia (us-east-1) using the provided CloudFormation template. Click Launch Stack to launch the template in the US East - N. Virginia (us-east-1) region in your account:
(In the last page of the wizard, make sure to:
- Click the checkboxes to give AWS CloudFormation permission to "create IAM resources" and "create IAM resources with custom names"
- Follow the instructions to "Create Change Set"
- Click "Execute" )
If you would like to deploy the template manually, you need a S3 bucket in the target region, and then package the Lambda functions into that S3 bucket by using the aws cloudformation package
utility.
** Note that this template may only be launched into US East - N. Virginia (us-east-1) as that is the only region where Trusted Advisor CloudWatch Event rules are configurable. **
Set environment variables for later commands to use:
S3BUCKET=[REPLACE_WITH_YOUR_BUCKET]
Then go to the cloudformation
folder and use the aws cloudformation package
utility
cd cloudformation
aws cloudformation package --region us-east-1 --s3-bucket $S3BUCKET --template exposed_access_keys.serverless.yaml --output-template-file exposed_access_keys.output.yaml
Last, deploy the stack with the resulting yaml (exposed_access_keys.output.yaml
) through the CloudFormation Console or command line:
aws cloudformation deploy --region us-east-1 --template-file exposed_access_keys.output.yaml --stack-name ExposedAccessKeysMonitor --capabilities CAPABILITY_NAMED_IAM
To test the example without exposing an IAM Access Key to a public repository you can simulate the workflow by executing the ExposedKey
state machine with a set of test json for the event. To do this follow the steps detailed below.
Ensure you have at least one E-mail address subscribed to the SecurityNotificationTopic
created by the template to receive the notification.
- Go to the Identity & Access Management console
- Go to
Users
- Click
Add User
and create a user with programmatic access- For the
User name
puttest-user
- For
Access type
selectProgrammatic access
- Do not set any permissions for the user
- Note the
Access key ID
from the Review page for later use in the test json
- For the
- Go to the Step Functions console
- Select the
ExposedKey
state machine - Click
New execution
to create the test execution of the state machine- Copy and paste the json below to the execution json field
- Replace
ACCESS_KEY_ID_HERE
with theAccess key ID
noted from the earlier creation oftest-user
- You do not need to enter an execution id as one will be randomly generated by default
{
"version": "0",
"id": "f2b7e2dd-20ce-4a2b-baa8-fe24ed0be19a",
"detail-type": "Trusted Advisor Check Item Refresh Notification",
"source": "aws.trustedadvisor",
"account": "111222333444",
"time": "2017-06-10T03:16:34Z",
"region": "us-east-1",
"resources": [],
"detail": {
"check-name": "Exposed Access Keys",
"check-item-detail": {
"Case ID": "02648f3b-e18f-4019-8d68-ce25efe080ff",
"Usage (USD per Day)": "0",
"User Name (IAM or Root)": "test-user",
"Deadline": "1440453299248",
"Access Key ID": "ACCESS_KEY_ID_HERE",
"Time Updated": "1497064411198",
"Fraud Type": "Exposed",
"Location": "www.github.com/some_user/some_repo/some_file"
},
"status": "ERROR",
"resource_id": "",
"uuid": "cce6d28f-e44b-4e61-aba1-5b4af96a0f59"
}
}
You can follow the state machine's progress in the Step Functions console. The summary message for test-user
will be sent to the e-mail address(es) subscribed to the SecurityNotificationTopic
SNS Topic.
- Note that the summary for this user will likely be empty as it will not have logged any API calls to CloudTrail
Here is an example of what this message might look like for a user who has made recent API calls to IAM and Step Functions:
At DETECTED_TIME the IAM access key ACCESS_KEY_ID for user USERNAME on account ACCOUNT_ID was deleted after it was found to have been exposed at the URL www.github.com/some_user/some_repo/some_file.
Below are summaries of the most recent actions, resource names, and resource types associated with this user over the last 24 hours.
Actions:
PutRolePolicy: 16
CreateRole: 10
DeleteRolePolicy: 10
DeleteRole: 8
CreateStateMachine: 2
DeleteStateMachine: 1
StartExecution: 1
Resource Names:
SomeResourceName: 10
SomeOtherResourceName: 39
Resource Types:
AWS::IAM::Role: 64
AWS::IAM::Policy: 26
These are summaries of only the most recent API calls made by this user. Please ensure your account remains secure by further reviewing the API calls made by this user in CloudTrail.
To remove all resources created by this example, do the following:
- Delete the CloudFormation stack.
- Delete the CloudWatch log groups associated with each Lambda function created by the CloudFormation stack.
The following sections explain all of the resources created by the CloudFormation template provided with this example.
- TrustedAdvisorExposedKeyRule - A CloudWatch Events Rule to detect Trusted Advisor Exposed Key events and send them to the Step Functions state machine target
- ExposedKeysStepFunction - A Step Functions state machine that orchestrates the access key deletion, API call summary, and notification of security
- DeleteAccessKeyPair - Lambda function that deletes the exposed IAM Access Key Pair associated with username provided by event.
- LookupCloudTrailEvents - Lambda function that looks up and summarizes recent API activity for the exposed access key provided by the event.
- NotifySecurity - Lambda function that constructs and sends security notification message containing API activity summary to SNS Topic created by this CloudFormation template.
- NotificationTopic - SNS Topic that API activity security message is sent to.
- ExecuteStateMachineRole - IAM Role with policy that allows CloudWatch Events rule to invoke executions of Step Functions state machines
- StepFunctionExecutionRole IAM Role with policy that allows Step Functions state machines to invoke Lambda functions.
- LambdaDeleteAccessKeyPairRole - IAM Role with policy that allows Lambda function to invoke "iam:DeleteAccessKey" API call and write log messages to CloudWatch Logs.
- LambdaLookupCloudTrailEventsRole - IAM Role with policy that allows Lambda function to invoke "cloudtrail:LookupEvents" API call and write log messages to CloudWatch Logs.
- LambdaSnsPublishRole - IAM Role with policy that allows Lambda function to invoke "sns:Publish" API call and write log messages to CloudWatch Logs.
This reference architecture sample is licensed under Apache 2.0.