From ef98c34d9568006f471af0197efef67b8b0b164c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85hsman?= Date: Mon, 12 Oct 2020 20:56:03 +0200 Subject: [PATCH] Remove unnecessary curly braces from Lambda Layer example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94594c55..0beeeaf9 100644 --- a/README.md +++ b/README.md @@ -237,7 +237,7 @@ functions: hello: handler: handler.hello layers: - - { Ref: PythonRequirementsLambdaLayer } + - Ref: PythonRequirementsLambdaLayer ``` If the layer requires additional or custom configuration, add them onto the `layer` option.