-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
48 lines (48 loc) · 894 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
42
43
44
45
46
47
48
variable "lambda_role_name" {
type = string
}
variable "lambda_role_policy_name" {
type = string
}
variable "dead_letter_queue_name" {
type = string
}
variable "sqs_queue_name" {
type = string
}
variable "lambda_name" {
type = string
}
variable "s3_name" {
type = string
}
variable "sqs_timeout_visibility" {
type = number
}
variable "sqs_retention_period" {
type = number
}
variable "sqs_dead_letters_count" {
type = number
}
variable "lambda_handler" {
type = string
}
variable "s3_path_for_images_input" {
type = string
}
variable "s3_path_for_images_output" { # TODO: Add ability to redefine output folder (hardcoded)
type = string
}
variable "s3_notification_events" {
type = list(string)
}
variable "sqs_dead_letter_queue_visibility_timeout" {
type = number
}
variable "message_retention_seconds" {
type = number
}
variable "email_sender" {
type = string
}