Skip to content

Commit

Permalink
fix changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolnagpal committed Sep 6, 2021
1 parent 247c606 commit 37a5392
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ module "guardduty" {
threatintelset_activate = var.threatintelset_activate
threatintelset_format = "TXT"
threatintelset_iplist = var.threatintelset_iplist
target_bucket = var.target_bucket
target_prefix = var.target_prefix
sse_algorithm = var.sse_algorithm

is_guardduty_member = var.is_guardduty_member
member_list = var.member_list
Expand Down
19 changes: 19 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,25 @@ variable "slack_webhook" {
description = "The webhook of slack."
}

variable "target_bucket" {
type = string
default = ""
description = "The name of the bucket that will receive the log objects."
}

variable "target_prefix" {
type = string
default = ""
description = "To specify a key prefix for log objects."
}

variable "sse_algorithm" {
type = string
default = "AES256"
description = "The server-side encryption algorithm to use. Valid values are AES256 and aws:kms."
}


variable "slack_channel" {
type = string
description = "The channel of slack."
Expand Down

0 comments on commit 37a5392

Please sign in to comment.