-
Notifications
You must be signed in to change notification settings - Fork 2
/
zappa_settings.json
81 lines (81 loc) · 2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"dev": {
"alias": "dev",
"slim_handler": true,
"aws_region": "us-east-1",
"django_settings": "deprepagos.settings_dev",
"project_name": "deprepagos",
"runtime": "python3.9",
"timeout_seconds": 300,
"memory_size": 1024,
"s3_bucket": "faticketera-zappa-dev",
"keep_warm": true,
"vpc_config": {
"SubnetIds": [
"subnet-0d7a6e86d022b6ce5",
"subnet-0be4af32a014a1734",
"subnet-0a902c2f8d32f26f5",
"subnet-0d3504ba22b734981",
"subnet-01b326364992b2f57",
"subnet-0a10faa62f52d05a8"
],
"SecurityGroupIds": [
"sg-05430820583c3e497"
]
},
"route53_enabled": false,
"extra_permissions": [
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": "arn:aws:s3:::faticketera-zappa-dev/*"
}
],
"domain": "dev.fuegoaustral.org",
"certificate_arn": "arn:aws:acm:us-east-1:251799394474:certificate/09f6bc34-2d5a-4172-a25a-2602f1b15fca"
},
"prod": {
"alias": "prod",
"slim_handler": true,
"aws_region": "us-east-1",
"django_settings": "deprepagos.settings_prod",
"project_name": "deprepagos",
"runtime": "python3.9",
"timeout_seconds": 300,
"memory_size": 1024,
"s3_bucket": "faticketera-zappa-prod",
"keep_warm": true,
"vpc_config": {
"SubnetIds": [
"subnet-0ec9b01ef200e3fd8",
"subnet-087803ad71197bfd6",
"subnet-0c0872c4d05ed309d"
],
"SecurityGroupIds": [
"sg-0c63c3a7d4263c4d4"
]
},
"domain": "eventos.fuegoaustral.org",
"route53_enabled": false,
"extra_permissions": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObjectAcl",
"s3:GetObject"
],
"Resource": "arn:aws:s3:::faticketera-zappa-prod/*"
}
],
"certificate_arn": "arn:aws:acm:us-east-1:251799394474:certificate/84e0a65b-041f-49f0-8fb5-f440fb700aef",
"events": [
{
"function": "tickets.email_crons.send_pending_actions_emails",
"expression": "cron(0 17 * * ? *)"
}
]
}
}