forked from Suprajaa-27/Coding-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (37 loc) · 989 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
variable "bucket_name" {
type = string
description = "Bucket where files are uploaded to trigger lambda function"
}
variable "region" {
type = string
description = "Region in which terraform will be deployed"
}
variable "function_name" {
type = string
description = "The name of the Lambda Function."
}
variable "handler" {
type = string
description = "The Lambda function handler."
}
variable "runtime" {
type = string
description = "The Lambda function runtime."
}
variable "filter_prefix" {
type = string
description = "Prefix filter for S3 events."
default = ""
}
variable "filter_suffix" {
type = string
description = "Suffix filter for S3 events."
default = ".json"
}
variable "trigger_events" {
description = "List of S3 trigger events."
default = ["s3:ObjectCreated:*"]
}
variable "filename" {
description = "The path to the Lambda function deployment package (ZIP file)."
}