Hello guys,
I hope this message finds you well. I’m a beginner developer who has recently started working with Terraform.
I’m writing to discuss the behavior of the validate
command in Terraform. Upon reviewing the source code for the validate
command, I’ve noticed that it returns an exit code of 1 if there are any “error” in the diagnostics, while it returns an exit code of 0 if there are only “warning” or no issues at all.
Here is the code
type Validate interface {
// Results renders the diagnostics returned from a validation walk, and
// returns a CLI exit code: 0 if there are no errors, 1 otherwise
Results(diags tfdiags.Diagnostics) int
Diagnostics(diags tfdiags.Diagnostics)
}
Here’s my concern:
From a conventional standpoint, shouldn’t the validation process be considered successfully executed regardless of the type of issues it detects? The presence of different levels of severity (like warning vs. error) should not, in my opinion, affect whether the validation itself was successfully carried out. It seems counterintuitive to have the exit code reflect the severity of the issues found rather than the success of the validation operation.
Could you provide insight into why this conditional check on the exit code was implemented? Is there a particular reason for this design choice that I might be overlooking?
Thanks