-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzappa_settings.json
62 lines (62 loc) · 1.36 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"base": {
"profile_name": null,
"project_name": "twitch-hdt-ebs",
"lambda_description": "https://github.com/HearthSim/twitch-hdt-ebs",
"runtime": "python3.9",
"memory_size": 128,
"num_retained_versions": 3,
"tags": {
"expense-class": "hsreplaynet"
},
"timeout_seconds": 45,
"touch": false,
"aws_region": "us-east-1",
"django_settings": "twitch_hdt_ebs.settings",
"s3_bucket": "hearthsim-lambda-artifacts",
"delete_s3_zip": false,
"route53_enabled": false,
"vpc_config": {
"SubnetIds": ["subnet-d0f9b6fd"],
"SecurityGroupIds": ["sg-4edf023b", "sg-6200a413", "sg-8816b2f9", "sg-9b9736ea"]
},
"exclude": [
"boto3*",
"botocore*",
"*.css",
"*.eot",
"*.html",
"*.mo",
"*.js",
"*.svg",
"*.ttf",
"*.woff",
"*.woff2",
"*__pycache__*"
],
"extra_permissions": [{
"Action": [
"ssm:GetParameters",
"ssm:GetParametersByPath",
"kms:Decrypt"
],
"Resource": ["*"],
"Effect": "Allow"
}]
},
"dev": {
"extends": "base",
"cloudwatch_data_trace": true,
"cloudwatch_log_level": "INFO",
"debug": true,
"log_level": "DEBUG"
},
"live": {
"extends": "base",
"cloudwatch_log_level": "ERROR",
"log_level": "ERROR",
"debug": false,
"domain": "twitch-ebs.hearthsim.net",
"certificate_arn": "arn:aws:acm:us-east-1:746159132190:certificate/106d16cb-7f03-4831-9d2b-1fd6f9127229"
}
}