-
Notifications
You must be signed in to change notification settings - Fork 4
/
zappa_settings.json
44 lines (44 loc) · 1.29 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
39
40
41
42
43
44
{
"test": {
"log_level": "INFO",
"app_function": "manage.app",
"aws_region": "us-east-1",
"profile_name": "default",
"project_name": "mysaas",
"runtime": "python3.8",
"s3_bucket": "zappa-mysaas-test",
"remote_env": "s3://mysaas-env/test-secrets.json",
"timeout_seconds": 300,
"lambda_description": "aws:states:opt-out",
"environment_variables": {
"CONFIG": "test",
"AWS_REGION": "us-east-1"
},
"extra_permissions": [{
"Effect": "Allow",
"Action": ["ses:*"],
"Resource": "*"
}]
},
"prod": {
"log_level": "INFO",
"app_function": "manage.app",
"aws_region": "us-east-1",
"profile_name": "default",
"project_name": "mysaas",
"runtime": "python3.8",
"s3_bucket": "zappa-mysaas-prod",
"remote_env": "s3://mysaas-env/prod-secrets.json",
"timeout_seconds": 300,
"lambda_description": "aws:states:opt-out",
"environment_variables": {
"CONFIG": "prod",
"AWS_REGION": "us-east-1"
},
"extra_permissions": [{
"Effect": "Allow",
"Action": ["ses:*"],
"Resource": "*"
}]
}
}