diff --git a/posts/2019-12-03-aws-lambda-provisioned-concurrency.md b/posts/2019-12-03-aws-lambda-provisioned-concurrency.md index 503539f3c..6f4f6bbde 100644 --- a/posts/2019-12-03-aws-lambda-provisioned-concurrency.md +++ b/posts/2019-12-03-aws-lambda-provisioned-concurrency.md @@ -34,9 +34,9 @@ Of course, we don’t really want to dip into the console if our service is buil functions: hello: handler: handler.hello - events: - - http: - path: /hello + events: + - http: + path: /hello method: get provisionedConcurrency: 5 ```