forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (35 loc) · 1.08 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
variable "disable_email_notification" {
description = "Boolean whether an email notification is sent to the accounts."
type = bool
default = false
}
variable "finding_publishing_frequency" {
description = "Specifies the frequency of notifications sent for subsequent finding occurrences."
type = string
default = "SIX_HOURS"
}
variable "invitation_message" {
description = "Message for invitation."
type = string
default = "This is an automatic invitation message from guardduty-baseline module."
}
variable "master_account_id" {
description = "AWS account ID for master account."
type = string
default = ""
}
variable "member_accounts" {
description = "A list of IDs and emails of AWS accounts which associated as member accounts."
type = list(object({
account_id = string
email = string
}))
default = []
}
variable "tags" {
description = "Specifies object tags key and value. This applies to all resources created by this module."
type = map(string)
default = {
"Terraform" = "true"
}
}