I'm exporting the name of the stack and the URL of my Lambda function in my CloudFormation template.
Outputs:
LambdaInvokeURL:
Value: !GetAtt Myurl.FunctionUrl
Export:
Name: !Sub "${AWS::StackName}"
I have 8 to 10 stacks exporting similar outputs.
How can I list all exported names & values across all stacks in my AWS account?
Should I write a new CloudFormation template or a Lambda function to list them?