-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathvariables.tf
50 lines (39 loc) · 969 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
49
50
variable "region" {
description = "The AWS region we want this bucket to live in."
default = "eu-central-1"
}
variable "owner" {
default = "demo-test"
}
variable "app_name" {
default = "lambda-sample-template"
}
variable "lambda_runtime" {
default = "python2.7"
}
variable "lambda_memory_size" {
default = "512"
}
variable "filtersuffix" {
default = ".SUFFIX"
}
variable "filterprefix" {
default = ".PREFIX"
}
variable "lambda_timeout" {
default = "60"
}
variable "lambda_handler" {
default = "lambda_function.lambda_handler"
}
variable "lambda_source_package" {
default = "terraform-lambda/lambda_function.py.zip"
}
variable "is_s3_bucket_create" {
description = "pass true incase of want to create new bucket, keep blank in case of use existing."
default = ""
}
variable "s3_bucket_source_arn" {
description = "The S3 bucket arn if the bucket already existing,keep blacn if you want to create new."
default = ""
}