Skip to content

Instantly share code, notes, and snippets.

@vikene
Last active April 7, 2020 07:45
Show Gist options
  • Select an option

  • Save vikene/d89e3c0cedeac6298c1096f9f8b42b1d to your computer and use it in GitHub Desktop.

Select an option

Save vikene/d89e3c0cedeac6298c1096f9f8b42b1d to your computer and use it in GitHub Desktop.

Revisions

  1. vikene revised this gist Apr 7, 2020. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion serverless.yaml
    Original file line number Diff line number Diff line change
    @@ -11,4 +11,5 @@ functions:
    handler: app.handler
    events:
    - http: ANY /
    - http: 'ANY {proxy+}'
    - http: 'ANY {proxy+}'

  2. vikene created this gist Apr 7, 2020.
    14 changes: 14 additions & 0 deletions serverless.yaml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    service: sample-github-actions

    provider:
    name: aws
    runtime: nodejs12.x
    stage: dev
    region: us-east-1

    functions:
    app:
    handler: app.handler
    events:
    - http: ANY /
    - http: 'ANY {proxy+}'