This repository was archived by the owner on Feb 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzappa_settings.json
More file actions
85 lines (85 loc) · 2.43 KB
/
Copy pathzappa_settings.json
File metadata and controls
85 lines (85 loc) · 2.43 KB
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
82
83
84
85
{
"staging": {
"aws_region": "eu-west-1",
"project_name": "reverie",
"runtime": "python3.6",
"django_settings": "reverie.settings.staging",
"s3_bucket": "zappa-91bqxapat",
"extra_permissions": [{
"Effect": "Allow",
"Resource": "*",
"Action": [
"SES:GetSendQuota"
]
}, {
"Effect": "Allow",
"Resource": "arn:aws:ses:eu-west-1:212595788859:identity/*",
"Action": [
"SES:SendEmail",
"SES:SendRawEmail"
],
"Condition": {
"StringLike": {
"ses:FromAddress": "staging.*@oneirism.co"
}
}
},
{
"Effect": "Allow",
"Action": ["s3:ListBucket"],
"Resource": ["arn:aws:s3:::db.reverie.devenney.io"]
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject"
],
"Resource": ["arn:aws:s3:::db.reverie.devenney.io/*"]
}]
},
"prod": {
"aws_region": "eu-west-1",
"domain": "reverie.oneirism.co",
"certificate_arn": "arn:aws:acm:us-east-1:212595788859:certificate/f460bc3e-799d-4c76-ad19-7a5adb83d995",
"debug": false,
"route53_enabled": true,
"project_name": "reverie",
"runtime": "python3.6",
"exclude": [".coverage", "assets", "db.sqlite3", "htmlcov", "media", "node_modules", "static"],
"django_settings": "reverie.settings.prod",
"s3_bucket": "zappa-reverie-prod",
"extra_permissions": [{
"Effect": "Allow",
"Resource": "*",
"Action": [
"SES:GetSendQuota"
]
}, {
"Effect": "Allow",
"Resource": "arn:aws:ses:eu-west-1:212595788859:identity/*",
"Action": [
"SES:SendEmail",
"SES:SendRawEmail"
],
"Condition": {
"StringLike": {
"ses:FromAddress": "*@oneirism.co"
}
}
},
{
"Effect": "Allow",
"Action": ["s3:ListBucket"],
"Resource": ["arn:aws:s3:::db.reverie.devenney.io"]
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject"
],
"Resource": ["arn:aws:s3:::db.reverie.devenney.io/*"]
}]
}
}