16 lines
348 B
Terraform
16 lines
348 B
Terraform
|
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
|
||
|
}
|