Support cdk deploy stack update without change set - speed up deployments #8493
Labels
effort/medium
Medium work item – several days of effort
feature-request
A feature should be added or improved.
needs-triage
This issue or PR still needs to be triaged.
package/tools
Related to AWS CDK Tools or CLI
It would be great if there was an option for
cdk deploy
to do a direct CloudFormation deployment and not use a change set.I was using serverless framework this morning and was amazed by how fast deployments were. For a second I thought AWS had implemented a general performance boost to CloudFormation :D But it turn out serverless is quicker in deploying than I was used to with CDK because serverless framework does not use change sets. That makes a ton of difference in deployment speed.
For most projects I am on we do not review change sets anyway (reviews are done as part of PR's and within the deployment pipeline).
Proposed Solution
Add a flag e.g.
--no-changeset
tocdk deploy
command.If specified, upon deployment a change set will not be created. If the stack exists, the stack is updated without change set.
This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered: