-
Notifications
You must be signed in to change notification settings - Fork 0
/
zappa_settings.json
38 lines (38 loc) · 1.34 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
{
"web": {
"app_function": "web.__init__.APP",
"aws_region": "ap-southeast-2",
"profile_name": null,
"project_name": "irs",
"runtime": "python3.6",
"manage_roles": false,
"role_name": "irs-irs-ZappaLambdaExecutionRole",
"role_arn": "arn:aws:iam::647081355413:role/irs-irs-ZappaLambdaExecutionRole",
"domain": "www.bigmeme.com.au",
"certificate_arn": "arn:aws:acm:us-east-1:647081355413:certificate/e07a960a-b094-48a8-ba75-bbf3c4b7806b",
"s3_bucket": "irs-zappa",
"keep_warm": false
},
"css": {
"app_function": "web.__init__.APP",
"aws_region": "ap-southeast-2",
"profile_name": null,
"project_name": "irs",
"runtime": "python3.6",
"manage_roles": false,
"slim_handler": false,
"role_name": "irs-irs-ZappaLambdaExecutionRole",
"certificate_arn": "arn:aws:acm:us-east-1:647081355413:certificate/e07a960a-b094-48a8-ba75-bbf3c4b7806b",
"s3_bucket": "irs-zappa",
"keep_warm": false,
"events": [{
"function": "events.satisfaction_lambda.calculate_css_from_image",
"event_source": {
"arn": "arn:aws:s3:::irs-images",
"events": [
"s3:ObjectCreated:*"
]
}
}]
}
}