-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
53 lines (48 loc) · 970 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
47
48
49
50
51
52
53
variable "domain" {
type = string
description = "The managed domain name"
}
variable "subdomains" {
type = set(string)
description = "The subdomains directly link to `var.domain_name`"
default = [
"www",
"status",
"cringe",
"etherpad",
"search",
"mail",
"cloud",
"news",
"git",
"password",
"services",
"bin",
"books",
"links",
"ascii-facemaker",
]
}
variable "host" {
type = string
description = "The target host IPv4 address"
sensitive = true
}
variable "host_ipv6" {
type = string
description = "The target host IPv6 address"
default = null
sensitive = true
}
variable "dkim_key" {
type = string
description = "The TXT DNS entry containing the DKIM key"
default = null
sensitive = true
}
variable "smtp_tlsa" {
type = string
description = "The SMTP TLS fingerprint"
default = null
sensitive = true
}