Skip to content

Commit 9c30144

Browse files
committed
fmt
1 parent 13ed4e9 commit 9c30144

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

internal/provider/data_retention_policy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package provider
22

33
import (
4-
"github.com/hashicorp/go-tfe"
5-
"github.com/hashicorp/terraform-plugin-framework/types"
64
"context"
5+
"github.com/hashicorp/go-tfe"
76
"github.com/hashicorp/terraform-plugin-framework/attr"
87
"github.com/hashicorp/terraform-plugin-framework/diag"
8+
"github.com/hashicorp/terraform-plugin-framework/types"
99
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
1010
"math/big"
1111
)

internal/provider/resource_tfe_data_retention_policy.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ import (
44
"context"
55
"fmt"
66
"github.com/hashicorp/go-tfe"
7+
"github.com/hashicorp/terraform-plugin-framework-validators/numbervalidator"
8+
"github.com/hashicorp/terraform-plugin-framework-validators/objectvalidator"
9+
"github.com/hashicorp/terraform-plugin-framework/diag"
710
"github.com/hashicorp/terraform-plugin-framework/path"
811
"github.com/hashicorp/terraform-plugin-framework/resource"
912
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
13+
"github.com/hashicorp/terraform-plugin-framework/resource/schema/numberplanmodifier"
1014
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
1115
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
1216
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
13-
"github.com/hashicorp/terraform-plugin-log/tflog"
14-
"github.com/hashicorp/terraform-plugin-framework-validators/objectvalidator"
15-
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
1617
"github.com/hashicorp/terraform-plugin-framework/types"
17-
"github.com/hashicorp/terraform-plugin-framework/diag"
18+
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
19+
"github.com/hashicorp/terraform-plugin-log/tflog"
1820
"strings"
19-
"github.com/hashicorp/terraform-plugin-framework/resource/schema/numberplanmodifier"
20-
"github.com/hashicorp/terraform-plugin-framework-validators/numbervalidator"
2121
)
2222

2323
// Ensure provider defined types fully satisfy framework interfaces.

internal/provider/resource_tfe_data_retention_policy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"testing"
66
"time"
77

8+
"fmt"
89
tfe "github.com/hashicorp/go-tfe"
910
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1011
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
11-
"fmt"
1212
"os"
1313
)
1414

0 commit comments

Comments
 (0)