Skip to content

[AWSX-1556] feat(logs): add support for Network firewall autosubscription #30325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 8, 2025
Merged
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 @@ -52,6 +52,7 @@ Any AWS service that generates logs into a S3 bucket or a CloudWatch Log Group i
| [Step Functions][52] | [Enable Amazon Step Functions logs][53] | [Manual][54] log collection. |
| [Web Application Firewall][49] | [Enable Amazon WAF logs][50] | [Manual][51] and [automatic](#automatically-set-up-triggers) log collection. |
| [MWAA][55] | [Enable Amazon MWAA logs][56] | [Manual][56] and [automatic](#automatically-set-up-triggers) log collection. |
| [Network Firewall][57] | [Enable AWS Network Firewall logs][58] | [Manual][58] and [automatic](#automatically-set-up-triggers) log collection. |


## Set up triggers
Expand All @@ -76,6 +77,7 @@ Datadog can automatically configure triggers on the Datadog Forwarder Lambda fun
| Cloudtrail Logs | S3, Cloudwatch |
| Lambda Logs | CloudWatch |
| Lambda@Edge Logs | Cloudwatch |
| Network Firewall Logs | S3, CloudWatch |
| Redshift Logs | S3 |
| S3 Access Logs | S3 |
| SSM Command Logs | Cloudwatch |
Expand All @@ -99,6 +101,8 @@ Datadog can automatically configure triggers on the Datadog Forwarder Lambda fun
"lambda:InvokeFunction",
"lambda:List*",
"lambda:GetPolicy",
"network-firewall:DescribeLoggingConfiguration",
"network-firewall:ListFirewalls",
"redshift:DescribeClusters",
"redshift:DescribeLoggingStatus",
"s3:GetBucketLogging",
Expand Down Expand Up @@ -129,6 +133,8 @@ Datadog can automatically configure triggers on the Datadog Forwarder Lambda fun
| `lambda:InvokeFunction` | Invoke a Lambda function. |
| `lambda:List*` | List all Lambda functions. |
| `lambda:GetPolicy` | Get the Lambda policy when triggers are to be removed. |
| `network-firewall:DescribeLoggingConfiguration` | Get the logging configuration of a firewall |
| `network-firewall:ListFirewalls` | List all Network Firewall firewalls |
| `redshift:DescribeClusters` | List all Redshift clusters. |
| `redshift:DescribeLoggingStatus` | Get the name of the S3 bucket containing Redshift Logs. |
| `s3:GetBucketLogging` | Get the name of the S3 bucket containing S3 access logs. |
Expand Down Expand Up @@ -349,3 +355,5 @@ You can also exclude or send only those logs that match a specific pattern by us
[54]: /integrations/amazon_step_functions/#send-logs-to-datadog
[55]: /integrations/amazon_mwaa/
[56]: /integrations/amazon_mwaa/#log-collection
[57]: /integrations/amazon_network_firewall/
[58]: /integrations/amazon_network_firewall/#log-collection
Loading