(diags hcl.Diagnostics)
| 11 | ) |
| 12 | |
| 13 | func parameterValidationError(diags hcl.Diagnostics) *DiagnosticError { |
| 14 | return &DiagnosticError{ |
| 15 | Message: "Unable to validate parameters", |
| 16 | Diagnostics: diags, |
| 17 | KeyedDiagnostics: make(map[string]hcl.Diagnostics), |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func tagValidationError(diags hcl.Diagnostics) *DiagnosticError { |
| 22 | return &DiagnosticError{ |