Created
February 14, 2022 14:10
-
-
Save diegomengarda/852e3bbba02c95220a3c991e0521bdd0 to your computer and use it in GitHub Desktop.
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: front-service | |
frameworkVersion: '2' | |
variablesResolutionMode: 20210326 | |
provider: | |
stage: ${opt:stage} | |
name: aws | |
region: us-west-2 | |
runtime: nodejs14.x | |
lambdaHashingVersion: '20201221' | |
apiGateway: | |
restApiId: ${ssm:MONOREPO_API_GATEWAY_REST_API_ID_${opt:stage}} | |
restApiRootResourceId: ${ssm:MONOREPO_API_GATEWAY_RESOURCE_ID_${opt:stage}} | |
functions: | |
api: | |
handler: dist/index.handler | |
timeout: 900 | |
events: | |
- http: | |
path: /front/{proxy+} | |
method: ANY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment