Resource: aws_guardduty_detector_feature

Provides a resource to manage a single Amazon GuardDuty detector feature.

Example Usage

resource "aws_guardduty_detector" "example" {
  enable = true
}

resource "aws_guardduty_detector_feature" "eks_runtime_monitoring" {
  detector_id = aws_guardduty_detector.example.id
  name        = "EKS_RUNTIME_MONITORING"
  status      = "ENABLED"

  additional_configuration {
    name   = "EKS_ADDON_MANAGEMENT"
    status = "ENABLED"
  }
}

Argument Reference

This resource supports the following arguments:

Additional Configuration

The additional_configuration block supports the following:

Attribute Reference

This resource exports no additional attributes.