mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
reverted change in formating as some people parse it
This commit is contained in:
parent
1f2f3ad202
commit
1395eaa92a
@ -47,8 +47,7 @@ api keys:
|
||||
endpoints:
|
||||
GET - https://dxaynpuzd4.execute-api.us-east-1.amazonaws.com/dev/users
|
||||
functions:
|
||||
my-serverless-service-dev-hello:
|
||||
arn:aws:lambda:us-east-1:377024778620:function:my-serverless-service-dev-hello
|
||||
my-serverless-service-dev-hello: arn:aws:lambda:us-east-1:377024778620:function:my-serverless-service-dev-hello
|
||||
```
|
||||
|
||||
#### Verbose
|
||||
@ -67,15 +66,14 @@ api keys:
|
||||
endpoints:
|
||||
GET - https://dxaynpuzd4.execute-api.us-east-1.amazonaws.com/dev/users
|
||||
functions:
|
||||
my-serverless-service-dev-hello:
|
||||
arn:aws:lambda:us-east-1:377024778620:function:my-serverless-service-dev-hello
|
||||
my-serverless-service-dev-hello: arn:aws:lambda:us-east-1:377024778620:function:my-serverless-service-dev-hello
|
||||
|
||||
Stack Outputs
|
||||
CloudFrontUrl: d2d10e2tyk1pei.cloudfront.net
|
||||
ListScreenshotsLambdaFunctionArn: arn:aws:lambda:us-east-1:377024778620:function:lambda-screenshots-dev-listScreenshots
|
||||
ScreenshotBucket: dev-svdgraaf-screenshots
|
||||
CreateThumbnailsLambdaFunctionArn: arn:aws:lambda:us-east-1:377024778620:function:lambda-screenshots-dev-createThumbnails
|
||||
TakeScreenshotLambdaFunctionArn: arn:aws:lambda:us-east-1:377024778620:function:lambda-screenshots-dev-takeScreenshot
|
||||
ServiceEndpoint: https://12341jc801.execute-api.us-east-1.amazonaws.com/dev
|
||||
ServerlessDeploymentBucketName: lambda-screenshots-dev-serverlessdeploymentbucket-15b7pkc04f98a
|
||||
CloudFrontUrl: d2d10e2tyk1pei.cloudfront.net
|
||||
ListScreenshotsLambdaFunctionArn: arn:aws:lambda:us-east-1:377024778620:function:lambda-screenshots-dev-listScreenshots
|
||||
ScreenshotBucket: dev-svdgraaf-screenshots
|
||||
CreateThumbnailsLambdaFunctionArn: arn:aws:lambda:us-east-1:377024778620:function:lambda-screenshots-dev-createThumbnails
|
||||
TakeScreenshotLambdaFunctionArn: arn:aws:lambda:us-east-1:377024778620:function:lambda-screenshots-dev-takeScreenshot
|
||||
ServiceEndpoint: https://12341jc801.execute-api.us-east-1.amazonaws.com/dev
|
||||
ServerlessDeploymentBucketName: lambda-screenshots-dev-serverlessdeploymentbucket-15b7pkc04f98a
|
||||
```
|
||||
|
||||
@ -60,11 +60,10 @@ module.exports = {
|
||||
|
||||
if (info.functions && info.functions.length > 0) {
|
||||
info.functions.forEach((f) => {
|
||||
functionsMessage += `\n ${f.name}:\n`;
|
||||
functionsMessage += ` ${f.arn}`;
|
||||
functionsMessage = functionsMessage.concat(`\n ${f.name}: ${f.arn}`);
|
||||
});
|
||||
} else {
|
||||
functionsMessage += '\n None';
|
||||
functionsMessage = functionsMessage.concat('\n None');
|
||||
}
|
||||
|
||||
message += functionsMessage;
|
||||
@ -73,7 +72,7 @@ module.exports = {
|
||||
if (this.options.verbose) {
|
||||
message += `${chalk.yellow.underline('\n\nStack Outputs\n')}`;
|
||||
_.forEach(this.gatheredData.outputs, (output) => {
|
||||
message += ` ${chalk.yellow(output.OutputKey)}: ${output.OutputValue}\n`;
|
||||
message += `${chalk.yellow(output.OutputKey)}: ${output.OutputValue}\n`;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user