Created
November 11, 2019 19:15
-
-
Save ahmetkucukoglu/fae5a3b91393c657bafec86e543caf7a to your computer and use it in GitHub Desktop.
AWS Serverless Kuyruklama Sistemi Geliştirme - serverless.yml
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
service: comments-api | |
provider: | |
name: aws | |
runtime: dotnetcore2.1 | |
region: eu-central-1 | |
profile: serverlessuser | |
apiKeys: | |
- CommentsAPIKey | |
package: | |
individually: true | |
functions: | |
api: | |
handler: CsharpHandlers::AwsDotnetCsharp.LambdaEntryPoint::FunctionHandlerAsync | |
events: | |
- http: | |
path: '{proxy+}' | |
method: ANY | |
private: true | |
package: | |
artifact: bin/release/netcoreapp2.1/api-handler.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment