-
Notifications
You must be signed in to change notification settings - Fork 0
/
parallel-config.json
29 lines (29 loc) · 959 Bytes
/
parallel-config.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
{
"app_name": "test-app",
"lambdas": [
{
"code_path": "/Users/zromer/Documents/programming/parallelagram/example_lambda",
"lambda_name": "example-lambda",
"lambda_handler": "handler",
"timeout": 20,
"memory_size": 512,
"s3_request_bucket": "sg-phil-testing",
"s3_response_bucket": "sg-phil-testing",
"dynamo_response_table": "phils_done_tasks",
"iam_role": "LambdaCustomRole",
"iam_policy": "LambdaCustomRole",
"runtime": "python3.8",
"tracing": true
},
{
"code_path": "/Users/zromer/Documents/programming/parallelagram/example_lambda",
"lambda_name": "example-lambda2",
"lambda_handler": "handler",
"timeout": 20,
"runtime": "python3.8",
"s3_request_bucket": "sg-phil-testing",
"s3_response_bucket": "sg-phil-testing",
"dynamo_response_table": "phils_done_tasks"
}
]
}