-
Notifications
You must be signed in to change notification settings - Fork 0
/
zappa_settings.json
38 lines (38 loc) · 1.11 KB
/
zappa_settings.json
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
{
"production": {
"app_function": "app.app",
"aws_region": "us-west-2",
"environment_variables": {
"BUCKET_NAME": "",
"S3_LINK_EXPIRATION": "1200"
},
"project_name": "krkn-telemetry",
"runtime": "python3.9",
"s3_bucket": "krkn-telemetry-lambda-bucket",
"slim_handler": true
},
"test": {
"app_function": "app.app",
"aws_region": "us-west-2",
"environment_variables": {
"BUCKET_NAME": "",
"S3_LINK_EXPIRATION": "1200"
},
"project_name": "krkn-telemetry",
"runtime": "python3.9",
"s3_bucket": "krkn-telemetry-lambda-bucket",
"slim_handler": true
},
"dev": {
"app_function": "app.app",
"aws_region": "us-west-2",
"environment_variables": {
"BUCKET_NAME": "krkn-telemetry-data-bucket-dev",
"S3_LINK_EXPIRATION": "1200"
},
"project_name": "krkn-telemetry",
"runtime": "python3.9",
"s3_bucket": "krkn-telemetry-lambda-bucket",
"slim_handler": true
}
}