diff --git a/go.mod b/go.mod index a74fad2aac..769fbf3c0e 100644 --- a/go.mod +++ b/go.mod @@ -9,6 +9,7 @@ require ( github.com/buger/jsonparser v1.1.1 github.com/google/uuid v1.4.0 github.com/gookit/color v1.5.4 + github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 github.com/hashicorp/go-uuid v1.0.3 github.com/hashicorp/terraform-plugin-framework v1.4.2 github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 @@ -78,7 +79,6 @@ require ( github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-checkpoint v0.5.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect github.com/hashicorp/go-hclog v1.5.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-plugin v1.5.2 // indirect diff --git a/pkg/resources/helpers.go b/pkg/resources/helpers.go index 9af1be8a16..712dd92674 100644 --- a/pkg/resources/helpers.go +++ b/pkg/resources/helpers.go @@ -2,11 +2,12 @@ package resources import ( "fmt" + "reflect" + "strings" + "github.com/Snowflake-Labs/terraform-provider-snowflake/pkg/helpers" "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" - "reflect" - "strings" "github.com/Snowflake-Labs/terraform-provider-snowflake/pkg/sdk" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/pkg/resources/helpers_test.go b/pkg/resources/helpers_test.go index 15e5c0a536..ebed71abee 100644 --- a/pkg/resources/helpers_test.go +++ b/pkg/resources/helpers_test.go @@ -1,9 +1,10 @@ package resources_test import ( + "testing" + "github.com/Snowflake-Labs/terraform-provider-snowflake/pkg/sdk" "github.com/hashicorp/go-cty/cty" - "testing" "github.com/stretchr/testify/assert"