Uses serverless framework and DynamoDB for an example provider integration.
See /lib/
for the functions that Create/Get/Update/Delete
instances
The API is deployed through serverless.yml
into AWS. The service used lambda functions and API gateway and instance info is persisted in DynamoDB.
See functions
in serverless.yml
to see how the endpoints are wired up
- Install dependencies
npm install
Install & setup the serverless framework for AWS.
- Set AWS credentials
export AWS_ACCESS_KEY_ID=<your-key-here>
export AWS_SECRET_ACCESS_KEY=<your-secret-key-here>
- Deploy
npm run deploy