Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 551 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 551 Bytes

cloudformation cli

stack

A stack is a collection of AWS resources that you can manage as a single unit

list stacks

aws cloudformation list-stacks

get list of resources in stack

aws cloudformation describe-stack-resources --stack-name my-stack-name

get a particular resource

aws cloudformation describe-stack-resource --stack-name lambda-stack-one --logical-resource-id IamRoleLambdaExecution

aws cloudformation describe-stack-resource --stack-name lambda-stack-one --logical-resource-id AppLogGroup