-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (30 loc) · 933 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
variable "domain" {
description = "Name of the domain to manage."
type = string
}
variable "mx_servers" {
description = "Informations regarding MX servers. **MX servers are required to enable Transactional Emails.**"
type = list(object({
address = string
priority = number
}))
default = [{
address = "blackhole.scw-tem.cloud."
priority = 10
}]
}
variable "project_id" {
description = "ID of the project the domain is associated with. Ressource will be created in the project set at the provider level if null."
type = string
default = null
}
variable "subdomain" {
description = "Name of the subdomain to manage."
type = string
default = ""
}
variable "setup_tem" {
type = bool
description = "Whether to create a Transaction Email service. **Beware that the service is only available in region `fr-par` at the moment.**"
default = false
}