Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9d0fc13

Browse files
committedJun 25, 2024·
imports
1 parent e8b1edb commit 9d0fc13

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed
 

‎provider/agent.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ import (
66
"reflect"
77
"strings"
88

9-
"github.com/coder/terraform-provider-coder/provider/helpers"
109
"github.com/google/uuid"
1110
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1211
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1312
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
1413
"golang.org/x/xerrors"
14+
15+
"github.com/coder/terraform-provider-coder/provider/helpers"
1516
)
1617

1718
func agentResource() *schema.Resource {

‎provider/externalauth.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/coder/terraform-provider-coder/provider/helpers"
87
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
98
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
9+
10+
"github.com/coder/terraform-provider-coder/provider/helpers"
1011
)
1112

1213
// externalAuthDataSource returns a schema for an external authentication data source.

‎provider/gitauth.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/coder/terraform-provider-coder/provider/helpers"
87
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
98
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
9+
10+
"github.com/coder/terraform-provider-coder/provider/helpers"
1011
)
1112

1213
// gitAuthDataSource returns a schema for a Git authentication data source.

‎provider/workspace.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ import (
66
"reflect"
77
"strconv"
88

9-
"github.com/coder/terraform-provider-coder/provider/helpers"
109
"github.com/google/uuid"
1110
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1211
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12+
13+
"github.com/coder/terraform-provider-coder/provider/helpers"
1314
)
1415

1516
func workspaceDataSource() *schema.Resource {

0 commit comments

Comments
 (0)