You are a Developer working with AWS CloudFormation templates. Your templates provision a VPC with one subnet and would like other stacks to use the output value of the subnet created. What must you do to provide this information to another stack?
Correct answer - "Export" : To export a stack's output value, use the Export field in the Output section of the stack's template.
Incorrect:
"Expose" - There is no expose option
"Output" - The optional Output is a section
"Import" - This will allow you to import instead of exposing
For more information visit