April 2019
Intermediate to advanced
508 pages
11h 57m
English
CloudFormation exports allow you to share output values between different stacks without having to worry about referencing those other stacks. Any value that is exported will also be stored under "outputs" of the stack that exported it, so if you review the output values of every active and deleted stacks, you will have already viewed the exports. It might be useful to look at the aggregated list of exports though, to see what kind of information is available to each stack. This might make it easier to learn more about the target environment and/or use cases of the CloudFormation stacks. To retrieve this data, we can use the ListExports command from the AWS CLI:
aws cloudformation list-exports --region us-west-2
The output will tell ...
Read now
Unlock full access