-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
51 lines (47 loc) · 1016 Bytes
/
serverless.yml
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
service: serverless-kafka
plugins:
- serverless-python-requirements
provider:
name: aws
profile: ${self:custom.profiles.${self:provider.stage}}
runtime: python3.6
region: eu-west-1
memorySize: 128
timeout: 10
environment:
KAFKA_HOSTS: ${env:KAFKA_HOSTS}
SCHEMA_REGISTRY: ${env:SCHEMA_REGISTRY}
custom:
defaultStage: dev
profiles:
dev: nonprod
prod: prod
package:
exclude:
- .git/**
- .idea/**
- .iml
- node_modules/**
include:
- service.cert
- service.key
- ca.pem
functions:
consumer:
handler: api.consumer.consumer_handler
events:
- http:
path: consume/{topic}
method: get
- http:
path: consume/{topic}/partition/{partition}
method: get
- http:
path: consume/{topic}/partition/{partition}/offset/{offset}
method: get
copy:
handler: api.copy.copy_handler
events:
- http:
path: copy/{from_topic}/{to_topic}
method: post