forked from ukncsc/terraform-aws-mtasts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
38 lines (32 loc) · 984 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
variable "zone_id" {
type = string
description = "Route53 zone hosting the domain MTA-STS/TLS-RPT is being deployed for."
}
variable "domain" {
type = string
description = "The domain MTA-STS/TLS-RPT is being deployed for."
}
variable "mode" {
type = string
default = "testing"
description = "MTA-STS policy 'mode'. Either 'testing' or 'enforce'."
}
variable "max_age" {
type = string
default = "86400"
description = "MTA-STS max_age. Time in seconds the policy should be cached. Default is 1 day"
}
variable "mx" {
type = list(string)
description = "'mx' value for MTA-STS policy. List of MX hostnames to be included in MTA-STS policy"
}
variable "reporting_email" {
type = string
default = ""
description = "(Optional) Email to use for TLS-RPT reporting."
}
variable "tags" {
type = map(string)
default = {}
description = "(Optional) tags to apply to underlying resources"
}