Contact Form

Name

Email *

Message *

Cari Blog Ini

Cdk Deploy Dry Run

```html

AWS CDK Tutorial: Deploying and Dry Running Your Stacks

Deploying Stacks

To deploy one or more AWS CDK stacks into your AWS environment, use the cdk deploy command. During deployment, the CDK CLI will output the following information:

  • The stack name
  • The stack status
  • The stack events

Dry-Run Deployments

A dry-run build can be useful for testing your deployment pipeline without actually deploying any changes. To perform a dry run, use the cdk deploy --dry-run command.

Running cdk deploy --dry-run will first synthesize the stacks and then output a list of the changes that would be made. This allows you to review the changes before actually deploying them.

Next Steps

In this tutorial, you learned how to deploy and dry-run AWS CDK stacks. For more information on AWS CDK, please refer to the following resources:

```


Comments