Philipp Muens bdcb704504 Update API Gateway API keys integration test
API keys are global. So they should be unique per test in our integration tests as they might
collide if two tests run in parallel and they both reference the same API key.
2016-10-19 06:50:54 +02:00

18 lines
327 B
YAML

service: aws-nodejs # NOTE: update this with your service name
provider:
name: aws
runtime: nodejs4.3
apiKeys:
- WillBeReplacedBeforeDeployment
functions:
hello:
handler: handler.hello
events:
- http:
path: hello
method: GET
integration: lambda
private: true