forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
34 lines (29 loc) · 1.01 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
variable "enabled" {
description = "The boolean flag whether this module is enabled or not. No resources are created when set to false."
default = true
}
variable "enable_cis_standard" {
description = "Boolean whether CIS standard is enabled."
default = true
}
variable "enable_pci_dss_standard" {
description = "Boolean whether PCI DSS standard is enabled."
default = true
}
variable "enable_aws_foundational_standard" {
description = "Boolean whether AWS Foundations standard is enabled."
default = true
}
variable "enable_product_arns" {
description = "List of Security Hub product ARNs, `<REGION>` will be replaced. See https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-partner-providers.html for list."
type = list(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 = []
}