-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
46 lines (38 loc) · 1.04 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
variable "route53_zone_name" {
type = string
description = "The zone name, as defined in AWS Route53"
}
variable "route53_zone_id" {
type = string
description = "The zone id, as defined in AWS Route53"
}
variable "record_ttl" {
type = number
description = "TTL to set on DNS records"
default = "600"
}
variable "caa_list" {
type = set(string)
description = "CAA records to apply to zone root"
default = ["0 issue \";\""]
}
variable "root_txt" {
type = set(string)
description = "TXT records to apply to zone root"
default = ["v=spf1 -all"]
}
variable "dkim_catchall" {
type = set(string)
description = "Catch all DKIM record i.e. DKIM record with a blank key"
default = ["v=DKIM1; p="]
}
variable "mx_list" {
type = set(string)
description = "MX records to apply to zone root"
default = ["0 ."]
}
variable "dmarc_txt" {
type = set(string)
description = "DMARC records to apply to zone"
default = ["v=DMARC1; p=reject; sp=reject;"]
}