AWS braket medium security documentation change
Summary
Added section 'Monitor spending limit changes with CloudTrail events' showing how to track spending limit modifications via EventBridge
Security assessment
Provides security auditing capability for financial controls by detecting changes to spending limits (Create/Update/Delete operations), enabling detection of unauthorized cost control modifications
Diff
diff --git a/braket/latest/developerguide/braket-ctlogs.md b/braket/latest/developerguide/braket-ctlogs.md index c946f869c..921bd627f 100644 --- a//braket/latest/developerguide/braket-ctlogs.md +++ b//braket/latest/developerguide/braket-ctlogs.md @@ -7 +7 @@ -Amazon Braket information in CloudTrailUnderstanding Amazon Braket log file entries +Amazon Braket information in CloudTrailUnderstanding Amazon Braket log file entriesMonitor spending limit changes with CloudTrail events @@ -9 +9 @@ Amazon Braket information in CloudTrailUnderstanding Amazon Braket log file entr -# Logging your quantum tasks with CloudTrail +# Logging your Braket actions with CloudTrail @@ -20,0 +21,2 @@ To learn more about CloudTrail, see the [AWS CloudTrail User Guide](https://docs + * Monitor spending limit changes with CloudTrail events + @@ -144,0 +147,20 @@ The following shows a log entry for the `GetDevice` action, which returns the de +## Monitor spending limit changes with CloudTrail events + +You can use EventBridge to receive CloudTrail events when spending limit resources are created, updated, or deleted. This allows you to track changes to your spending limits. To filter for spending limit operations, use the following event pattern in EventBridge: + + + { + "source": ["aws.braket"], + "detail-type": ["AWS API Call via CloudTrail"], + "detail": { + "eventSource": ["braket.amazonaws.com"], + "eventName": [ + "CreateSpendingLimit", + "UpdateSpendingLimit", + "DeleteSpendingLimit" + ] + } + } + +This event pattern matches CloudTrail events for any write operations against your spending limits, enabling you to audit and monitor changes to your cost control settings. +