File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ packaged template that can be readily deployed to CloudFormation.
53
53
$ aws cloudformation package \
54
54
--template-file /path_to_template/template.yaml \
55
55
--s3-bucket bucket-name \
56
- --s3-prefix appname/branchname/version
56
+ --s3-prefix appname/branchname/version \
57
57
--output-template-file packaged-template.yaml
58
58
```
59
59
@@ -63,7 +63,7 @@ Or using the aws-sam-cli
63
63
$ sam package \
64
64
--template-file /path_to_template/template.yaml \
65
65
--s3-bucket bucket-name \
66
- --s3-prefix appname/branchname/version
66
+ --s3-prefix appname/branchname/version \
67
67
--output-template-file packaged-template.yaml
68
68
```
69
69
@@ -104,7 +104,7 @@ Or using aws-sam-cli
104
104
``` bash
105
105
$ sam deploy \
106
106
--template-file /path_to_template/packaged-template.yaml \
107
- --stack-name my-new-stack
107
+ --stack-name my-new-stack \
108
108
--capabilities CAPABILITY_IAM
109
109
```
110
110
You can’t perform that action at this time.
0 commit comments