Merge pull request #4082 from serverless/DOCS-OutputExample

Fix Output example in serverless.yml docs
This commit is contained in:
Philipp Muens 2017-08-14 08:02:50 +02:00 committed by GitHub
commit 1dfd1ee603

View File

@ -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.
```