Skip to content

Commit 6138939

Browse files
authored
Adds a new parameter to allow deployment of SAM templates larger than 51200 bytes over s3 bucket.
Feature to deploy a template larger than 51,200 bytes with the command aws cloudformation deploy. --s3-bucket: The URI of the Amazon S3 bucket where this command uploads your AWS CloudFormation template. This is required to deploy templates that are larger than 51,200 bytes. AWS documentation: https://docs.aws.amazon.com/cli/latest/reference/cloudformation/deploy/index.html#deploy
1 parent 02791ce commit 6138939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ output = text
7878
region = $AWS_REGION" > ~/.aws/config
7979

8080
aws cloudformation package --template-file $TEMPLATE --output-template-file serverless-output.yaml --s3-bucket $AWS_DEPLOY_BUCKET $AWS_BUCKET_PREFIX $FORCE_UPLOAD $USE_JSON
81-
aws cloudformation deploy --template-file serverless-output.yaml --stack-name $AWS_STACK_NAME $CAPABILITIES $PARAMETER_OVERRIDES $TAGS
81+
aws cloudformation deploy --template-file serverless-output.yaml --stack-name $AWS_STACK_NAME --s3-bucket $AWS_DEPLOY_BUCKET $CAPABILITIES $PARAMETER_OVERRIDES $TAGS

0 commit comments

Comments
 (0)