-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
72 lines (65 loc) · 2.21 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
71
72
variable "account_password_policy" {
type = object({
allow_users_to_change = bool
max_age = number
minimum_length = number
require_lowercase_characters = bool
require_numbers = bool
require_symbols = bool
require_uppercase_characters = bool
reuse_prevention_history = number
})
default = {
allow_users_to_change = true
max_age = 90
minimum_length = 14
require_lowercase_characters = true
require_numbers = true
require_symbols = true
require_uppercase_characters = true
reuse_prevention_history = 24
}
description = "AWS account password policy parameters"
}
variable "aws_config" {
type = object({
aggregator_account_ids = list(string)
aggregator_regions = list(string)
})
default = null
description = "AWS Config settings"
}
variable "aws_ebs_encryption_by_default" {
type = bool
default = true
description = "Set to true to enable AWS Elastic Block Store encryption by default"
}
variable "aws_ebs_encryption_custom_key" {
type = bool
default = false
description = "Set to true and specify the `aws_kms_key_arn` to use in place of the AWS-managed default CMK"
}
variable "aws_kms_key_arn" {
type = string
default = null
description = "The ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use to encrypt the EBS volumes"
}
variable "aws_security_hub_standards_arns" {
type = list(string)
default = null
description = "A list of the ARNs of the standards you want to enable in AWS Security Hub. If you do not provide a list the default standards are enabled"
}
variable "service_quotas_manager_role" {
type = object({
assuming_principal_identifier = string
path = optional(string, "/")
permissions_boundary = optional(string, null)
})
default = null
description = "Create the role needed to integrate the terraform-aws-mcaf-service-quotas-manager module"
}
variable "tags" {
type = map(string)
default = {}
description = "Map of tags"
}