16 lines
348 B
HCL
16 lines
348 B
HCL
variable "emails" {
|
|
type = list(string)
|
|
description = "Email addresses to be added to SES"
|
|
}
|
|
|
|
variable "reputation_metrics_enabled" {
|
|
type = bool
|
|
description = "Enable reputation metrics"
|
|
default = true
|
|
}
|
|
|
|
variable "require_tls" {
|
|
type = bool
|
|
description = "Require TLS delivery option"
|
|
default = true
|
|
} |