-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
64 lines (52 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
variable "domain" {
description = "The DNS name of the domain in which to create the Office 365 records."
default = ""
}
variable "zone_id" {
description = "The Zone ID of the Route53 DNS zone."
default = ""
}
variable "ttl" {
description = "The time-to-live value for the DNS records."
default = "3600"
}
variable "ms_txt" {
description = "The value of the MS=mxXYZ TXT record which Office 365 requires to prove domain ownership."
default = ""
}
variable "enable_exchange" {
description = "Controls if the DNS records for Exchange Online should be created."
default = true
}
variable "enable_sfb" {
description = "Controls if the DNS records for Skype for Business should be created."
default = true
}
variable "enable_mdm" {
description = "Controls if the DNS records for Mobile Device Management should be created."
default = true
}
variable "enable_dkim" {
description = "Controls if the DNS records for DKIM should be created."
default = false
}
variable "tenant_name" {
description = "The Office 365 tenant name."
default = ""
}
variable "enable_dmarc" {
description = "Controls if the DNS record for DMARC should be created."
default = false
}
variable "dmarc_record" {
description = "The value of the DMARC record."
default = ""
}
variable "enable_custom_mx" {
description = "Controls whether a custom MX record should be created instead of the O365 default."
default = false
}
variable "custom_mx_record" {
description = "The value of the custom MX record to create."
default = ""
}