9 lines
160 B
Terraform
9 lines
160 B
Terraform
|
data aws_caller_identity this {}
|
||
|
|
||
|
resource aws_guardduty_detector gd {
|
||
|
enable = true
|
||
|
finding_publishing_frequency = "ONE_HOUR"
|
||
|
tags = var.default-tags
|
||
|
}
|
||
|
|