@aws-mdaa/audit-trail
v1.3.0
Published
MDAA audit-trail module
Readme
CloudTrail Trails
This Audit Trail CDK application is used to configure deploy the resources required to define a secure S3-based Audit Trail on AWS.
Deployed Resources and Compliance Details

CloudTrail Audit Trail - CloudTrail containing S3 Data Events will be configured to write to an audit bucket
Configuration
MDAA Config
Add the following snippet to your mdaa.yaml under the modules: section of a domain/env in order to use this module:
audit-trail: # Module Name can be customized
module_path: "@aws-caef/audit-trail" # Must match module NPM package name
module_configs:
- ./audit-trail.yaml # Filename/path can be customizedModule Config (./audit-trail.yaml)
trail:
# The name of the bucket to which audit events will be written
cloudTrailAuditBucketName: ssm:/sample-org/shared/audit/bucket/name
# The Arn of the KMS CMK which will be used to encrypt audit logs
cloudTrailAuditKmsKeyArn: ssm:/sample-org/shared/audit/kms/cmk/arn
# Optionally include control plane events in trail
includeManagementEvents: true