Resource: aws_guardduty_organization_configuration_feature

Provides a resource to manage a single Amazon GuardDuty organization configuration feature.

Example Usage

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

resource "aws_guardduty_organization_configuration_feature" "eks_runtime_monitoring" {
  detector_id = aws_guardduty_detector.example.id
  name        = "EKS_RUNTIME_MONITORING"
  auto_enable = "ALL"

  additional_configuration {
    name        = "EKS_ADDON_MANAGEMENT"
    auto_enable = "NEW"
  }
}

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.