forked from clouddrove/terraform-aws-ses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
146 lines (123 loc) · 3.35 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#Module : DOMAIN IDENTITY
#Description : Terraform domain identity module variables.
variable "domain" {
type = string
description = "Domain to use for SES."
}
#Module : SMTP IAM USER
#Description : Terraform smtp Iam user module variables.
variable "iam_name" {
type = string
default = ""
description = "IAM username."
}
variable "enable_verification" {
type = bool
default = false
description = "Control whether or not to verify SES DNS records."
}
variable "enable_mail_from" {
type = bool
default = false
description = "Control whether or not to enable mail from domain."
}
variable "enable_domain" {
type = bool
default = true
description = "Control whether or not to enable domain."
}
variable "enable_mx" {
type = bool
default = false
description = "Control whether or not to enable mx DNS recodrds."
}
variable "enable_spf_domain" {
type = bool
default = false
description = "Control whether or not to enable enable spf domain."
}
variable "enable_filter" {
type = bool
default = false
description = "Control whether or not to enable receipt filter."
}
variable "enable_policy" {
type = bool
default = false
description = "Control whether identity policy create for SES."
}
variable "enable_template" {
type = bool
default = false
description = "Control whether create a template for emails."
}
variable "mail_from_domain" {
type = string
default = ""
description = "Subdomain (of the route53 zone) which is to be used as MAIL FROM address."
}
variable "zone_id" {
type = string
default = ""
description = "Route53 host zone ID to enable SES."
}
variable "filter_name" {
type = string
default = ""
description = "The name of the filter."
}
variable "filter_cidr" {
type = string
default = ""
description = "The IP address or address range to filter, in CIDR notation."
}
variable "filter_policy" {
type = string
default = ""
description = "Block or Allow filter."
}
variable "policy_name" {
type = string
default = ""
description = "Name of the policy."
}
variable "template_name" {
type = string
default = ""
description = "The name of the template. Cannot exceed 64 characters. You will refer to this name when you send email."
}
variable "template_subject" {
type = string
default = ""
description = "The subject line of the email."
}
variable "template_html" {
type = string
default = ""
description = "The HTML body of the email. Must be less than 500KB in size, including both the text and HTML parts."
}
variable "text" {
type = string
default = ""
description = "The email body that will be visible to recipients whose email clients do not display HTML."
}
variable "txt_type" {
type = string
default = "TXT"
description = "Txt type for Record Set."
}
variable "mx_type" {
type = string
default = "MX"
description = "MX type for Record Set."
}
variable "cname_type" {
type = string
default = "CNAME"
description = "CNAME type for Record Set."
}
variable "ses_records" {
type = list(string)
default = []
description = "Additional entries which are added to the _amazonses record."
}