-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda_stack.json
35 lines (35 loc) · 1005 Bytes
/
lambda_stack.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
{
"localstack_config": {
"version": "0.10.8",
"services": ["lambda", "cloudwatch"],
"lambda_executer": "docker-reuse",
"docker_host": "unix:///var/run/docker.sock",
"recreate": true
},
"services": {
"node_lambda": {
"runtime": "nodejs10.x",
"handler": "index.js",
"env_file": ".env.test",
"function_name": "test_function",
"env_vars": {
"AA": "1",
"BB": "2"
},
"files": ["index.js", "a_not_existing_file_is_skipped"],
"function_path": "."
},
"go_lambda": {
"runtime": "go1.x",
"handler": "main",
"env_file": ".env.test",
"function_name": "test_go_function",
"env_vars": {
"BAR": "bar",
"BAZ": "baz"
},
"files": ["main", ".env.test"],
"function_path": "."
}
}
}