-
Notifications
You must be signed in to change notification settings - Fork 0
/
tf_variables_global.tf
57 lines (39 loc) · 1.12 KB
/
tf_variables_global.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
51
52
53
54
55
56
57
## variables for aws provider
variable "aws_creds_path" {
description = "The path to aws credentials file"
type = string
}
variable "aws_region" {
description = "AWS region for all resources."
type = string
}
## variables for worker lambdas code
variable "SOURCE_BUCKET_NAME" {
description = "Bucket with raw data files required for the subset-worker"
type = string
default = "fcx-raw-data"
}
## variables for worker lambda configuration
variable "lambda_execution_timeout" {
description = "lambda execution time limit in seconds"
type = number
default = 603
}
variable "lambda_execution_memory" {
description = "Maximum memory that the lambda execution can use (in MB). Processing power is directly proportional to the memory size"
type = number
default = 1024
}
variable "lambda_execution_ephimeral_storage" {
description = "Maximum storage of /tmp that the lambda execution can use (in MB)."
type = number
default = 5120
}
## variables needed for API GATEWAYS
variable "accountId" {
type = string
}
variable "stage_name" {
type = string
default = "development"
}