We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6952dfd commit 430be60Copy full SHA for 430be60
codersdk/templateversions.go
@@ -8,7 +8,6 @@ import (
8
"net/http"
9
"time"
10
11
- "github.com/coder/terraform-provider-coder/provider"
12
"github.com/google/uuid"
13
)
14
@@ -48,8 +47,8 @@ type TemplateVersionExternalAuth struct {
48
47
type ValidationMonotonicOrder string
49
50
const (
51
- MonotonicOrderIncreasing ValidationMonotonicOrder = provider.ValidationMonotonicIncreasing
52
- MonotonicOrderDecreasing ValidationMonotonicOrder = provider.ValidationMonotonicDecreasing
+ MonotonicOrderIncreasing ValidationMonotonicOrder = "increasing"
+ MonotonicOrderDecreasing ValidationMonotonicOrder = "decreasing"
53
54
55
// TemplateVersionParameter represents a parameter for a template version.
0 commit comments