AWS CloudFormation
CloudFormation stack management
List Stacks
aws cloudformation list-stacks # list all stacks
aws cloudformation describe-stacks # describe all stacks
aws cloudformation describe-stacks --stack-name my-stack # describe specific stack
Create Stack
aws cloudformation create-stack --stack-name my-stack --template-body file://template.yaml # create stack
aws cloudformation create-stack --stack-name my-stack --template-url https://... # from URL
Update Stack
aws cloudformation update-stack --stack-name my-stack --template-body file://template.yaml # update stack
Delete Stack
aws cloudformation delete-stack --stack-name my-stack # delete stack
Stack Events
aws cloudformation describe-stack-events --stack-name my-stack # view stack events