File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
localstack-core/localstack/services/cloudformation/v2 Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 88 CreateChangeSetInput ,
99 DescribeChangeSetOutput ,
1010 ExecutionStatus ,
11+ Output ,
1112 Parameter ,
1213 StackDriftInformation ,
1314 StackDriftStatus ,
@@ -111,12 +112,17 @@ def describe_details(self) -> ApiStack:
111112 "Tags" : [],
112113 }
113114 if self .resolved_outputs :
114- result ["Outputs" ] = [
115- # TODO(parity): Description, ExportName
116- # TODO(parity): what happens on describe stack when the stack has not been deployed yet?
117- {"OutputKey" : k , "OutputValue" : v }
118- for k , v in self .resolved_outputs .items ()
119- ]
115+ describe_outputs = []
116+ for key , value in self .resolved_outputs .items ():
117+ describe_outputs .append (
118+ Output (
119+ # TODO(parity): Description, ExportName
120+ # TODO(parity): what happens on describe stack when the stack has not been deployed yet?
121+ OutputKey = key ,
122+ OutputValue = value ,
123+ )
124+ )
125+ result ["Outputs" ] = describe_outputs
120126 return result
121127
122128
You can’t perform that action at this time.
0 commit comments