-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (40 loc) · 1.17 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
# variable "aws_secure_baseline_enabled" {
# description = "Enable secure baseline configuration for an AWS account"
# default = false
# }
variable "aws_alternate_contacts_enabled" {
description = "Enable alternate contacts configuration for an AWS account"
default = false
}
variable "operations_email_address" {
description = "Email for operations notifications"
default = null
}
variable "operations_phone_number" {
description = "Phone number for operations notifications"
default = null
}
variable "security_email_address" {
description = "Email for security notifications"
default = null
}
variable "security_phone_number" {
description = "Phone number for security notifications"
default = null
}
variable "billing_email_address" {
description = "Email for billing notifications"
default = null
}
variable "billing_phone_number" {
description = "Phone number for billing notifications"
default = null
}
# variable "aws_support_roles" {
# description = "A list of IAM roles for operations support"
# default = []
# }
# variable "aws_audit_log_bucket" {
# description = "Name of an S3 bucket used for audit logs"
# default = "audit_logs"
# }