Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
creation_date = "2024/05/02"
integration = ["aws_bedrock"]
maturity = "production"
updated_date = "2025/09/25"
updated_date = "2025/11/10"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -83,6 +83,9 @@ type = "esql"
query = '''
from logs-aws_bedrock.invocation-*

// Expand multi-value policy action field
| mv_expand gen_ai.policy.action

// Filter for policy-blocked requests
| where gen_ai.policy.action == "BLOCKED"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
creation_date = "2024/05/05"
integration = ["aws_bedrock"]
maturity = "production"
updated_date = "2025/09/25"
updated_date = "2025/11/10"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -86,6 +86,7 @@ from logs-aws_bedrock.invocation-*
| mv_expand gen_ai.compliance.violation_code
| mv_expand gen_ai.policy.confidence
| mv_expand gen_ai.policy.name
| mv_expand gen_ai.policy.action

// Filter for high-confidence content policy blocks with targeted violations
| where
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
creation_date = "2024/11/20"
integration = ["aws_bedrock"]
maturity = "production"
updated_date = "2025/09/25"
updated_date = "2025/11/10"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -83,6 +83,7 @@ from logs-aws_bedrock.invocation-*

// Expand multi-valued policy name field
| mv_expand gen_ai.policy.name
| mv_expand gen_ai.policy.action

// Filter for blocked actions related to sensitive info policy
| where
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
creation_date = "2024/11/20"
integration = ["aws_bedrock"]
maturity = "production"
updated_date = "2025/09/25"
updated_date = "2025/11/10"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -83,6 +83,7 @@ from logs-aws_bedrock.invocation-*

// Expand multi-value policy name field
| mv_expand gen_ai.policy.name
| mv_expand gen_ai.policy.action

// Filter for blocked topic policy violations
| where
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
creation_date = "2024/11/20"
integration = ["aws_bedrock"]
maturity = "production"
updated_date = "2025/09/25"
updated_date = "2025/11/10"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -83,6 +83,7 @@ from logs-aws_bedrock.invocation-*

// Expand multivalued policy names
| mv_expand gen_ai.policy.name
| mv_expand gen_ai.policy.action

// Filter for blocked profanity-related policy violations
| where
Expand Down
Loading