Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 2.14 KB

README.md

File metadata and controls

41 lines (33 loc) · 2.14 KB

Summary-AWS-CDK (っ´ω`)ノ(╥ω╥)

This repository provides a concise summary of AWS CDK, offering insights on how it works, along with instructions for installation and management.

The explanations below assume that the project will run on LINUX and will be developed using Python.

PROJECT INDEX

CHEAT SHEET

COMMAND ACTION
cdk list Lists all the stacks in the app
cdk diff Compares the current state of the stack with the state of the deployed stack
cdk deploy Deploys the stack to your default AWS account/region
cdk destroy Destroys the stack
cdk doctor Checks your environment and displays information about issues that it detects
cdk synth Synthesizes and prints the CloudFormation template for the specified stack(s)

SOURCES