I have added the following config into my template per the serverless docs:
apiKeys:
- ${opt:stage}
usagePlan:
quota:
limit: ${opt:monthly_quota}
period: MONTH
throttle:
rateLimit: ${opt:rate_limit}
burstLimit: ${opt:burst_limit}
I have also set my API config to private:
events:
- http:
path: add-event
method: post
private: true
The obvious goal is to integrate API keys and usage plans. However, I get the following error:
The CloudFormation template is invalid: Template format error: Unresolved resource dependencies
[ApiGatewayDeployment1507566343173] in the Resources block of the template
Note that I am using the serverless-plugin-bind-deployment-id
plugin.