(diags tfdiags.Diagnostics)
| 63 | } |
| 64 | |
| 65 | func (m OutputMulti) Diagnostics(diags tfdiags.Diagnostics) { |
| 66 | for _, o := range m { |
| 67 | o.Diagnostics(diags) |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // The OutputHuman implementation renders outputs in a format equivalent to HCL |
| 72 | // source. This uses the same formatting logic as in the console REPL. |
nothing calls this directly
no test coverage detected