We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GuardDuty
1 parent 2808319 commit 7d1c218Copy full SHA for 7d1c218
infra/terraform/hash/security.tf
@@ -0,0 +1,30 @@
1
+# AWS GuardDuty configuration
2
+# Provides threat detection and continuous security monitoring
3
+
4
+resource "aws_guardduty_detector" "main" {
5
+ enable = true
6
7
+ datasources {
8
+ s3_logs {
9
10
+ }
11
+ kubernetes {
12
+ audit_logs {
13
14
15
16
+ malware_protection {
17
+ scan_ec2_instance_with_findings {
18
+ ebs_volumes {
19
20
21
22
23
24
25
+ tags = {
26
+ Name = "${local.prefix}-guardduty-detector"
27
+ Service = "security"
28
+ Purpose = "Threat detection and intrusion monitoring"
29
30
+}
0 commit comments