Last active
March 21, 2021 18:27
-
-
Save loloDawit/7fb2fcd6b699e878f10ffc2d1fba92a2 to your computer and use it in GitHub Desktop.
snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .... | |
| provider: | |
| .... | |
| apiGateway: | |
| apiKeys: | |
| - free: | |
| - ${opt:stage}-freekey | |
| - paid: | |
| - ${opt:stage}-prokey | |
| usagePlan: | |
| - free: | |
| quota: | |
| limit: 5000 | |
| offset: 2 | |
| period: MONTH | |
| throttle: | |
| burstLimit: 200 | |
| rateLimit: 100 | |
| - paid: | |
| quota: | |
| limit: 50000 | |
| offset: 1 | |
| period: MONTH | |
| throttle: | |
| burstLimit: 2000 | |
| rateLimit: 1000 | |
| # for each function add private: true | |
| functions: | |
| ... | |
| - http: | |
| .... | |
| private: true | |
| .... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment