Skip to content

Commit

Permalink
Restore proper serverless.yml config following beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Jan 28, 2020
1 parent 907a27c commit 8efd790
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ functions:
handler: demo/function.php
description: 'Bref CLI demo'
layers:
- 'arn:aws:lambda:us-east-2:416566615250:layer:php-74:13'
- ${bref:layer.php-74}
environment:
BREF_LOOP_MAX: 100

Expand All @@ -36,7 +36,7 @@ functions:
timeout: 5 # in seconds (API Gateway has a timeout of 29 seconds)
memory: 1024
layers:
- 'arn:aws:lambda:us-east-2:416566615250:layer:php-74-fpm:13'
- ${bref:layer.php-74-fpm}
events:
- http: 'ANY /'

Expand All @@ -46,7 +46,7 @@ functions:
timeout: 5 # in seconds (API Gateway has a timeout of 29 seconds)
memory: 1024
layers:
- 'arn:aws:lambda:us-east-2:416566615250:layer:php-74:13'
- ${bref:layer.php-74}
events:
- http: 'ANY /psr7'
environment:
Expand All @@ -56,5 +56,5 @@ functions:
handler: demo/console.php
description: 'Bref console command demo'
layers:
- 'arn:aws:lambda:us-east-2:416566615250:layer:php-74:13'
- 'arn:aws:lambda:us-east-2:416566615250:layer:console:36'
- ${bref:layer.php-74}
- ${bref:layer.console}

0 comments on commit 8efd790

Please sign in to comment.