-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
76 lines (64 loc) · 1.62 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
variable "enabled" {
description = "Whether to enable Route 53 resources"
type = bool
default = true
}
variable "primary_domain" {
description = "The domain name to manage"
type = string
}
variable "records_a" {
type = map(list(string))
description = "Map of A records separate by comma (,)"
default = {}
}
variable "records_aaaa" {
type = map(list(string))
description = "Map of AAAA records separate by comma (,)"
default = {}
}
variable "records_caa" {
type = map(list(string))
description = "Map of CAA records separate by comma (,)"
default = {}
}
variable "records_cname" {
type = map(list(string))
description = "Map of CNAME records separate by comma (,)"
default = {}
}
variable "records_mx" {
type = map(list(string))
description = "Map of MX records separate by comma (,)"
default = {}
}
variable "records_txt" {
type = map(list(string))
description = "Map of TXT records separate by comma (,)"
default = {}
}
variable "records_ns" {
type = map(list(string))
description = "Map of NS records separate by comma (,)"
default = {}
}
variable "records_wr" {
type = map(string)
description = "Map of redirect records"
default = {}
}
variable "ttl" {
description = "Default TTL for All records"
type = number
default = "3600"
}
variable "ttl_acm" {
description = "Default TTL for acm records"
type = number
default = "60"
}
variable "ttl_ns" {
description = "Default TTL for ns records"
type = number
default = "172800"
}