-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzappa_settings.json
More file actions
86 lines (86 loc) · 2.63 KB
/
zappa_settings.json
File metadata and controls
86 lines (86 loc) · 2.63 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
86
{
"common": {
"aws_region": "eu-central-1",
"debug": false,
"slim_handler": true,
"django_settings": "cloud_outdated.settings",
"project_name": "cloud-outdated",
"runtime": "python3.8",
"timeout_seconds": 600,
"exclude": [
"*.pyc",
".DS_Store",
".dockerignore",
".env.local",
".github",
".git/*",
".gitignore",
"__pycache__",
"*black*",
"chamber",
"credentials.json",
"Dockerfile",
"docker-compose.yml",
"Makefile",
"README.md",
"requirements.txt",
"requirements_local.txt"
],
"events": [
{
"function": "services.tasks.poll_aws",
"expression": "rate(12 hours)"
},
{
"function": "services.tasks.poll_gcp",
"expression": "rate(12 hours)"
},
{
"function": "services.tasks.poll_azure",
"expression": "rate(12 hours)"
},
{
"function": "notifications.tasks.send_notifications",
"expression": "rate(6 hours)"
}
],
"extra_permissions": [
{
"Effect": "Allow",
"Action": [
"elasticache:DescribeCacheEngineVersions",
"es:ListVersions",
"kafka:ListKafkaVersions",
"memorydb:DescribeEngineVersions",
"mq:DescribeBrokerEngineTypes",
"rds:DescribeDBEngineVersions"
],
"Resource": "*"
}
]
},
"dev": {
"extends": "common",
"debug": true,
"log_level": "INFO",
"profile_name": "cloud-outdated-deploy-dev",
"s3_bucket": "cloud-outdated-dev",
"environment_variables": {
"ENV_PATH": ".env.dev"
},
"domain": "dev.cloud-outdated.com",
"certificate_arn": "arn:aws:acm:us-east-1:291218224580:certificate/50424608-de86-444c-9812-09c84388b83e"
},
"prod": {
"extends": "common",
"debug": false,
"log_level": "INFO",
"profile_name": "cloud-outdated-deploy-dev",
"s3_bucket": "cloud-outdated-prod",
"environment_variables": {
"ENV_PATH": ".env.prod"
},
"domain": "cloud-outdated.com",
"certificate_arn": "arn:aws:acm:us-east-1:291218224580:certificate/0fa31a86-75e0-4e31-ad3c-8c17ddc8f0e0"
}
}