The Output view renders either one or all outputs, depending on whether or not the name argument is empty.
| 26 | // The Output view renders either one or all outputs, depending on whether or |
| 27 | // not the name argument is empty. |
| 28 | type Output interface { |
| 29 | Output(name string, outputs map[string]*states.OutputValue) tfdiags.Diagnostics |
| 30 | Diagnostics(diags tfdiags.Diagnostics) |
| 31 | } |
| 32 | |
| 33 | // NewOutput returns an initialized Output implementation for the given ViewType. |
| 34 | func NewOutput(args arguments.ViewOptions, view *View) Output { |
no outgoing calls
no test coverage detected