-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathzappa_settings.json
34 lines (34 loc) · 1.08 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
{
"dev": {
"app_function": "api.app",
"aws_region": "us-west-2",
"s3_bucket": "zappa-emailsender-dev-lambda",
"attach_policy": "lambda-mailer-policy-dev.json",
"method_header_types": [
"Content-Type",
"Access-Control-Allow-Origin",
"Access-Control-Allow-Headers",
"Access-Control-Allow-Methods"
],
"environment_variables": {
"FROM_EMAIL": "[email protected]",
"DESTINATION_EMAIL": "[email protected]"
}
},
"prod": {
"app_function": "api.app",
"aws_region": "us-west-2",
"s3_bucket": "zappa-emailsender-prod-lambda",
"attach_policy": "lambda-mailer-policy-prod.json",
"method_header_types": [
"Content-Type",
"Access-Control-Allow-Origin",
"Access-Control-Allow-Headers",
"Access-Control-Allow-Methods"
],
"environment_variables": {
"FROM_EMAIL": "[email protected]",
"DESTINATION_EMAIL": "[email protected]"
}
}
}