-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
114 lines (104 loc) · 2.65 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
variable "name" {
type = string
description = "The name of the DNS zone."
}
variable "resource_group_name" {
type = string
description = "The name of the resource group in which to create the DNS zone."
}
variable "tags" {
type = map(string)
default = {}
description = "A mapping of tags to assign to the resource."
}
variable "soa_record" {
type = object({
email = string
tags = optional(map(string))
expire_time = optional(number)
minimum_ttl = optional(number)
refresh_time = optional(number)
retry_time = optional(number)
ttl = optional(number)
})
default = null
description = "Enables you to manage DNS SOA Record within Azure DNS zone."
}
variable "a_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
records = list(string)
}))
default = []
description = "Enables you to manage DNS A Records within Azure DNS zone."
}
variable "aaaa_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
records = list(string)
}))
default = []
description = "Enables you to manage DNS A Records within Azure DNS zone."
}
variable "cname_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
record = string
}))
default = []
description = "Enables you to manage DNS CNAME Records within Azure DNS zone."
}
variable "mx_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
records = list(object({
preference = number
exchange = string
}))
}))
default = []
description = "Enables you to manage DNS MX Records within Azure DNS zone."
}
variable "ptr_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
records = list(string)
}))
default = []
description = "Enables you to manage DNS PTR Records within Azure DNS zone."
}
variable "srv_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
records = list(object({
priority = number
weight = number
port = number
target = string
}))
}))
default = []
description = "Enables you to manage DNS SRV Records within Azure DNS zone."
}
variable "txt_records" {
type = list(object({
name = string
tags = optional(map(string))
ttl = number
records = list(string)
}))
default = []
description = "Enables you to manage DNS TXT Records within Azure DNS zone."
}