Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ packaged template that can be readily deployed to CloudFormation.
$ aws cloudformation package \
--template-file /path_to_template/template.yaml \
--s3-bucket bucket-name \
--s3-prefix appname/branchname/version
--s3-prefix appname/branchname/version \
--output-template-file packaged-template.yaml
```

Expand All @@ -63,7 +63,7 @@ Or using the aws-sam-cli
$ sam package \
--template-file /path_to_template/template.yaml \
--s3-bucket bucket-name \
--s3-prefix appname/branchname/version
--s3-prefix appname/branchname/version \
--output-template-file packaged-template.yaml
```

Expand Down Expand Up @@ -104,7 +104,7 @@ Or using aws-sam-cli
```bash
$ sam deploy \
--template-file /path_to_template/packaged-template.yaml \
--stack-name my-new-stack
--stack-name my-new-stack \
--capabilities CAPABILITY_IAM
```

Expand Down