generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
80 lines (67 loc) · 1.99 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
73
74
75
76
77
78
79
80
variable "cloudtrail_kms_key" {
description = "Arn of kms key used for cloudtrail logs"
type = string
}
variable "enable_cloudtrail_s3_mgmt_events" {
type = bool
default = true
description = "Enable CT Object-level logging, defaults to true"
}
variable "enabled_access_analyzer_regions" {
default = []
description = "Regions to enable IAM Access Analyzer in"
type = list(string)
}
variable "enabled_backup_regions" {
default = []
description = "Regions to enable AWS Backup in"
type = list(string)
}
variable "enabled_config_regions" {
default = []
description = "Regions to enable AWS Config in"
type = list(string)
}
variable "enabled_ebs_encryption_regions" {
default = []
description = "Regions to enable EBS encryption in"
type = list(string)
}
variable "enabled_guardduty_regions" {
default = []
description = "Regions to enable GuardDuty in"
type = list(string)
}
variable "enabled_securityhub_regions" {
default = []
description = "Regions to enable SecurityHub in"
type = list(string)
}
variable "root_account_id" {
type = string
description = "The AWS Organisations root account ID that this account should be part of"
}
variable "tags" {
default = {}
description = "Tags to apply to resources, where applicable"
type = map(any)
}
variable "enabled_imdsv2_regions" {
default = []
description = "Regions to enable IMDSv2 in"
type = list(string)
}
variable "enable_securityhub_alerts" {
default = false
description = "Flag to indicate if alerting resources should be created in the region"
type = bool
}
variable "reduced_preprod_backup_retention" {
description = "AWS Backup variable, if true, pre prod only retains 7 days of backups"
type = bool
}
variable "pagerduty_integration_key" {
default = ""
description = "A PagerDuty integration key to pass into a PagerDuty integration"
type = string
}