-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
41 lines (34 loc) · 926 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
39
40
41
variable "environment" {
type = string
description = "Descriptor for the email environment"
}
variable "from_address" {
type = string
description = "Email address to expect bounce/complaint notifications to originate from"
}
variable "log_level" {
type = string
default = "INFO"
description = "Lambda log level"
}
variable "project_name" {
type = string
description = "Name of the project"
}
variable "sns_bounce_arn" {
type = string
description = "ARN of the SNS topic for email bounces"
}
variable "sns_complaint_arn" {
type = string
description = "ARN of the SNS topic for email complaints"
}
variable "tags" {
type = map(any)
default = {}
description = "Map of tags to assign to the module resources"
}
variable "to_address" {
type = string
description = "Email address to send bounce/complaint notifications to"
}