I'm building up to a larger AWS CLI job but one of the building blocks is stumping me;
How do I get a list of just the names of every currently running AWS Cloudformation stack?
I can list the stacks just fine with the following, but I can't get a query to pair it down to just the stack name.
aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE --output text
I could cut the resulting table down in bash, but I'd love a more elegant aws solution if it exists.