From 911673fc132ddd94ebeb9376af7816e90fea28c8 Mon Sep 17 00:00:00 2001 From: Alex DeBrie Date: Sun, 13 Aug 2017 21:00:57 +0000 Subject: [PATCH] Fix Output example in serverless.yml docs Fixes #4079. --- docs/providers/aws/guide/serverless.yml.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/providers/aws/guide/serverless.yml.md b/docs/providers/aws/guide/serverless.yml.md index 8463439c1..93521b402 100644 --- a/docs/providers/aws/guide/serverless.yml.md +++ b/docs/providers/aws/guide/serverless.yml.md @@ -200,5 +200,6 @@ resources: Description: The ARN for the User's Table Value: "Fn::GetAtt": [ usersTable, Arn ] - Export: ${self:service}:${opt:stage}:UsersTableArn # see Fn::ImportValue to use in other services and http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html for documentation on use. + Export: + Name: ${self:service}:${opt:stage}:UsersTableArn # see Fn::ImportValue to use in other services and http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html for documentation on use. ```