<aside> 💡 Before reading this guide, make sure you’ve read through Quickstart: How to build a Plugin to set up your sandbox plugin.
To get up and running with an example, you can clone our gif-creator example plugin on Github.
</aside>
AWS provides two services that we’ll use to deploy our Plugin:
Lambda - a serverless architecture that lets you deploy stateless functions that can scale gracefully with load
API Gateway - a no code API gateway that can asynchronously call other AWS services such as Lambda
Navigate to the Lambda service in the AWS Console to create a Lambda Function.
In our example, we’ll create a Lambda Function from a Docker image uploaded to ECR:
Navigate to the API Gateway service in the AWS Console to create a REST API endpoint:
Create a POST
Method to receive POST
requests from Playbook: