-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
58 lines (49 loc) · 1.79 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
variable "zone" {
description = "name of zone"
type = string
}
variable "txt_records" {
description = "Map of TXT records. Keys are the record names, values are String or String[] containing record data."
type = any
default = {}
}
variable "mx_records" {
description = "Map of MX records. Keys are just titles, values is expected to be a map containing name, target, and priority."
type = map(any)
default = {}
}
variable "ns_records" {
description = "Map of NS records. Keys are the record names, values are String or String[] containing record data."
type = any
default = {}
}
variable "a_records" {
description = "Map of A records. Keys are the record names, values are String or String[] containing record data."
type = any
default = {}
}
variable "proxied_a_records" {
description = "Map of A records. Keys are the record names, values are String or String[] containing record data."
type = any
default = {}
}
variable "cname_records" {
description = "Map of CNAME records. Keys are the record names, values are String or String[] containing record data."
type = any
default = {}
}
variable "proxied_cname_records" {
description = "Map of CNAME records. Keys are the record names, values are String or String[] containing record data."
type = any
default = {}
}
variable "cnames_many_to_one" {
description = "REVERSE map of CNAME records. Keys are the record *data*, values are String or String[] containing record name. This allows for very terse creation of many CNAMEs with the same target."
type = any
default = {}
}
variable "allow_overwrite" {
description = "Enable 'allow_overwrite' on all dns records under this module."
type = bool
default = false
}