From 805445dbcd0d1bba70550d53c6a05616fcb77594 Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Tue, 4 Sep 2018 09:02:14 -0500 Subject: [PATCH] docs: Consistent packaged template naming (#647) --- docs/deploying_serverless_applications.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deploying_serverless_applications.rst b/docs/deploying_serverless_applications.rst index 9a47ec8cc9..21388654f9 100644 --- a/docs/deploying_serverless_applications.rst +++ b/docs/deploying_serverless_applications.rst @@ -23,7 +23,7 @@ Next, open a command prompt and type the following: sam package \ --template-file path/template.yaml \ - --output-template-file packaged.yaml \ + --output-template-file serverless-output.yaml \ --s3-bucket s3-bucket-name The package command returns an AWS SAM template named serverless-output.yaml that contains the CodeUri that points to the deployment zip in the Amazon S3 bucket that you specified. This template represents your serverless application. You are now ready to deploy it. @@ -36,7 +36,7 @@ To deploy the application, run the following command: .. code:: bash sam deploy \ - --template-file serverless-template.yaml \ + --template-file serverless-output.yaml \ --stack-name new-stack-name \ --capabilities CAPABILITY_IAM