-
Notifications
You must be signed in to change notification settings - Fork 8
/
_variables.tf
70 lines (60 loc) · 1.73 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
variable "subscription_pci" {
type = bool
default = false
description = "Enables PCI-DSS Standards subscription"
}
variable "subscription_cis" {
type = bool
default = false
description = "Enables CIS Foundations Benchmark Standards subscription"
}
variable "subscription_cis_version" {
type = string
nullable = false
default = "3.0.0"
description = "The version of the CIS AWS Foundations Benchmark to subscribe to"
}
variable "subscription_foundational" {
type = bool
default = false
description = "Enables AWS Foundational Security Best Practices subscription"
}
variable "subscription_resource_tagging" {
type = bool
default = false
description = "Enables AWS Resource Tagging Standard subscription"
}
variable "subscription_nist" {
type = bool
default = false
description = "Enables AWS NIST SP 800-53 subscription"
}
variable "severity_list" {
type = list(any)
default = ["HIGH", "CRITICAL"]
}
variable "members" {
type = list(any)
default = []
description = "List of member AWS accounts as [{account_id: '9999', email: '[email protected]'}, {...}] }"
}
variable "invite" {
type = bool
default = true
description = "Invite member accounts? (Use 'false' when this account is the delegated admin by master account)"
}
variable "alarm_email" {
type = string
default = ""
description = "Enables email notification (optional)"
}
variable "alarm_slack_endpoint" {
type = string
default = ""
description = "Enables slack notification to endpoint passed (optional)"
}
variable "chatbot_sns_topic" {
type = string
default = ""
description = "SNS topic for chatbot notification"
}