Answers for "aws cli cloudformation list stacks"

1

aws cli cloudformation list stacks

# Get list of all CloudFormation Stacks (basic info)
awsProfile="awsProfileName" # Use your aws profile name
awsQuery="Stacks[].{StackId:StackId,StackName:StackName,Description:Description}"
aws --profile "$awsProfile" cloudformation describe-stacks --query "$awsQuery"
Posted by: Guest on June-11-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language