-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
46 lines (39 loc) · 1023 Bytes
/
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
variable "apex_txt_record_append" {
type = list(string)
description = "additional Domain Apex TXT Record data"
default = []
}
variable "dmarc_record" {
type = string
description = "DMARC TXT Record"
default = "v=DMARC1;p=quarantine;pct=100;fo=1;"
}
variable "mail_from_subdomain" {
type = string
description = "Subdomain to use as `MAIL FROM` domain."
default = "mail"
}
variable "mx_priority" {
type = string
description = "MX Priority"
default = 10
}
variable "record_ttl" {
type = string
description = "TTL for all DNS records"
default = 86400
}
variable "spf_record" {
type = list(string)
description = "SPF TXT Record"
default = ["v=spf1 include:amazonses.com ~all;"]
}
variable "workmail_zone" {
type = string
description = "AWS Zone of the WorkMail Organization"
default = "us-east-1"
}
variable "zone_id" {
type = string
description = "ID of the DNS Zone to store Records in"
}