mirror of
https://github.com/coder/coder.git
synced 2026-09-21 20:51:01 +08:00
`ClassifyProvisionerError` previously returned only the raw job error string (e.g. "terraform plan: exit status 1") for unrecognized failures, discarding the provisioner log lines it already had. This made template import errors in the builder unactionable. Now the function extracts Terraform diagnostic blocks (Error:/Warning: lines and their context) from the provisioner logs and appends them to the error detail. This surfaces the actual failure cause (missing credentials, invalid references, unsupported blocks) in the ErrorAlert banner. Changes: - `extractDiagnostics` parses Terraform diagnostic blocks from log output, capped at 20 lines with a truncation marker - Auth error classification for AWS, GCP, Azure credential failures with a targeted user-facing message - Case-insensitive pattern matching via `strings.ToLower` on the combined text - Auth branch guarded against empty diagnostics (no trailing `\n\n`) > [!NOTE] > This PR was authored by Coder Agents on behalf of @jeremyruppel.
138 lines
3.9 KiB
Go
138 lines
3.9 KiB
Go
package templatebuilder
|
|
|
|
import "strings"
|
|
|
|
// networkErrorPatterns are substrings found in provisioner job output when
|
|
// the Terraform registry or provider endpoints are unreachable. These are
|
|
// intentionally not augmented with diagnostic context because the canned
|
|
// message is self-explanatory and the underlying logs rarely add value.
|
|
var networkErrorPatterns = []string{
|
|
"no such host",
|
|
"connection refused",
|
|
"i/o timeout",
|
|
"dial tcp: lookup",
|
|
"network is unreachable",
|
|
"no route to host",
|
|
"tls handshake timeout",
|
|
}
|
|
|
|
// authErrorPatterns are substrings that indicate cloud provider
|
|
// authentication or credential failures. Matching is case-insensitive
|
|
// (the combined text is lowercased before comparison).
|
|
var authErrorPatterns = []string{
|
|
"no valid credential sources found",
|
|
"could not find default credentials",
|
|
"unauthorizedaccess",
|
|
"authorizationfailed",
|
|
"authfailure",
|
|
"accessdenied",
|
|
"invalidclienttokenid",
|
|
"expiredtoken",
|
|
"signaturedoesnotmatch",
|
|
"not authorized to perform",
|
|
}
|
|
|
|
// maxLogContextLines caps how many relevant log lines are included in
|
|
// the error detail to avoid returning excessive output.
|
|
const maxLogContextLines = 20
|
|
|
|
// ClassifyProvisionerError inspects a provisioner job error and its log
|
|
// lines, returning a user-friendly message for known failure modes.
|
|
// For unrecognized errors, the raw jobError is returned with relevant
|
|
// log context appended so the user can diagnose the failure.
|
|
func ClassifyProvisionerError(jobError string, logs []string) string {
|
|
combined := strings.ToLower(jobError + "\n" + strings.Join(logs, "\n"))
|
|
|
|
for _, pattern := range networkErrorPatterns {
|
|
if strings.Contains(combined, pattern) {
|
|
return "The Terraform registry is unreachable from your provisioner. " +
|
|
"Check network configuration and ensure registry.terraform.io " +
|
|
"is accessible."
|
|
}
|
|
}
|
|
|
|
for _, pattern := range authErrorPatterns {
|
|
if strings.Contains(combined, pattern) {
|
|
msg := "Cloud provider authentication failed. " +
|
|
"Check that valid credentials are configured for the provisioner."
|
|
if diag := extractDiagnostics(logs); diag != "" {
|
|
msg += "\n\n" + diag
|
|
}
|
|
return msg
|
|
}
|
|
}
|
|
|
|
// For unrecognized errors, include relevant Terraform output so the
|
|
// user can diagnose the failure.
|
|
if diag := extractDiagnostics(logs); diag != "" {
|
|
return jobError + "\n\n" + diag
|
|
}
|
|
return jobError
|
|
}
|
|
|
|
// diagnosticPrefixes identify Terraform diagnostic output lines worth
|
|
// surfacing. Terraform formats errors as blocks starting with "Error:"
|
|
// or "Warning:" followed by indented detail lines.
|
|
var diagnosticPrefixes = []string{
|
|
"Error:",
|
|
"Warning:",
|
|
"error:",
|
|
"warning:",
|
|
}
|
|
|
|
// isDiagnosticStart returns true if the line begins a Terraform
|
|
// diagnostic block.
|
|
func isDiagnosticStart(line string) bool {
|
|
for _, prefix := range diagnosticPrefixes {
|
|
if strings.HasPrefix(line, prefix) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// extractDiagnostics pulls Terraform diagnostic blocks from provisioner
|
|
// log output. It keeps lines that start a diagnostic (Error:/Warning:)
|
|
// and subsequent indented or context lines, up to maxLogContextLines.
|
|
func extractDiagnostics(logs []string) string {
|
|
var lines []string
|
|
inBlock := false
|
|
|
|
for _, line := range logs {
|
|
if len(lines) >= maxLogContextLines {
|
|
lines = append(lines, "... (truncated)")
|
|
break
|
|
}
|
|
|
|
trimmed := strings.TrimSpace(line)
|
|
if trimmed == "" {
|
|
if inBlock {
|
|
// Blank line inside a block: keep it to preserve
|
|
// readability, but end the block.
|
|
lines = append(lines, "")
|
|
inBlock = false
|
|
}
|
|
continue
|
|
}
|
|
|
|
if isDiagnosticStart(trimmed) {
|
|
inBlock = true
|
|
lines = append(lines, trimmed)
|
|
continue
|
|
}
|
|
|
|
if inBlock {
|
|
lines = append(lines, trimmed)
|
|
continue
|
|
}
|
|
|
|
// Capture "on <file> line <N>" references that appear
|
|
// outside the main diagnostic block in some Terraform versions.
|
|
if strings.HasPrefix(trimmed, "on ") && strings.Contains(trimmed, " line ") {
|
|
lines = append(lines, trimmed)
|
|
}
|
|
}
|
|
|
|
return strings.Join(lines, "\n")
|
|
}
|