From ed4f9cdb396d8bda4957a1fea8255f6e3a88df5f Mon Sep 17 00:00:00 2001 From: dnalborczyk Date: Wed, 4 Dec 2019 16:53:47 -0500 Subject: [PATCH] Fix indentation --- posts/2019-12-03-aws-lambda-provisioned-concurrency.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ```