Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.29 KB

README.md

File metadata and controls

24 lines (16 loc) · 1.29 KB

Codacy Badge Follow on Twitter

AWS GuardDuty Monitor Terraform Module

A terraform module to monitor GuardDuty with Slack and Email (soon).

Getting Started

Getting started is easy. You will need GuardDuty provisioned via terraform or manually activated via the AWS console. Once GuardDuty is activated, simply import the module and configure as desired. Here is a complete example:

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

module "guardduty_monitor" {
  source = "opendevsecops/guardduty-monitor/aws"

  monitor_slack_notification_url = "${var.monitor_slack_notification_url}"
}

The module is automatically published to the Terraform Module Registry. More information about the available inputs, outputs, dependencies and instructions how to use the module can be found at the official page here.