Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 11, 2019 19:15
AWS Serverless Kuyruklama Sistemi Geliştirme - serverless.yml
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