mirror of https://github.com/hashicorp/terraform
While diagnostics are primarily designed for reporting problems in configuration, they can also be used for errors and warnings about the environment Terraform is running in, such as inability to reach a remote service, etc. Function Sourceless makes it easy to produce such diagnostics with the customary summary/detail structure. When these diagnostics are rendered they will have no source code snippet and will instead just include the English-language content.pull/17806/head
parent
3cc7343eee
commit
b43690c01a
@ -0,0 +1,13 @@
|
||||
package tfdiags
|
||||
|
||||
// Sourceless creates and returns a diagnostic with no source location
|
||||
// information. This is generally used for operational-type errors that are
|
||||
// caused by or relate to the environment where Terraform is running rather
|
||||
// than to the provided configuration.
|
||||
func Sourceless(severity Severity, summary, detail string) Diagnostic {
|
||||
return diagnosticBase{
|
||||
severity: severity,
|
||||
summary: summary,
|
||||
detail: detail,
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue