mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
1.2 KiB
1.2 KiB
Read this on the main serverless docs site
Event
Your Google Cloud Function can be triggered by different event sources. Those event sources can be defined and configured with the help of the event event.
Event events
This example sets up a pubSub event which will trigger the first function whenever a message is published to the my-topic topic.
# serverless.yml
functions:
first:
handler: pubSub
events:
- event:
eventType: providers/cloud.pubsub/eventTypes/topic.publish
resource: projects/*/topics/my-topic
// index.js
exports.pubSub = (event, callback) => {
console.log('Hello World!');
callback();
};
Note: See the documentation about the function handlers to learn how your handler signature should look like to work this type of event.