We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent247df4e commitdd7af3bCopy full SHA for dd7af3b
provider/parameter.go
@@ -24,6 +24,7 @@ import (
24
typeValidationModestring
25
26
const (
27
+ValidationModeEnvVar="CODER_VALIDATION_MODE"
28
// ValidationModeDefault is used for creating a workspace. It validates the final
29
// value used for a parameter. Some allowances for invalid options are tolerated,
30
// as unused options do not affect the final parameter value. The default value
@@ -59,7 +60,6 @@ type Validation struct {
59
60
}
61
62
-ValidationModeEnvVar="CODER_VALIDATION_MODE"
63
ValidationMonotonicIncreasing="increasing"
64
ValidationMonotonicDecreasing="decreasing"
65
)