-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathvariables.tf
72 lines (60 loc) · 1.88 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 "dmarc_p" {
description = "DMARC Policy for organizational domains (none, quarantine, reject)."
type = string
default = "none"
}
variable "dmarc_rua" {
description = "DMARC Reporting URI of aggregate reports, expects an email address."
type = string
}
variable "domain_name" {
description = "The domain name to configure SES."
type = string
}
variable "enable_dmarc" {
description = "Control whether to create DMARC TXT record."
type = bool
default = true
}
variable "from_addresses" {
description = "List of email addresses to catch bounces and rejections."
type = list(string)
default = null
}
variable "mail_from_domain" {
description = " Subdomain (of the route53 zone) which is to be used as MAIL FROM address"
type = string
}
variable "receive_s3_bucket" {
description = "Name of the S3 bucket to store received emails (required if enable_incoming_email is true)."
type = string
default = ""
}
variable "receive_s3_prefix" {
description = "The key prefix of the S3 bucket to store received emails (required if enable_incoming_email is true)."
type = string
default = ""
}
variable "receive_s3_kms_key_arn" {
description = "The ARN of the KMS key for S3 objects of received emails (effective if enable_incoming_email is true)."
type = string
default = null
}
variable "route53_zone_id" {
description = "Route53 host zone ID to enable SES."
type = string
}
variable "ses_rule_set" {
description = "Name of the SES rule set to associate rules with."
type = string
}
variable "enable_incoming_email" {
description = "Control whether or not to handle incoming emails."
type = bool
default = true
}
variable "enable_spf_record" {
description = "Control whether or not to set SPF records."
type = bool
default = true
}