Skip to content

Commit

Permalink
feat: change import name
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherNagl committed Aug 18, 2024
1 parent 81fa799 commit 2d8ed06
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module terraform-microsoft-fabric
module terraform-provider-microsoftfabric

go 1.22.5

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/domain_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/evenstream_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/eventhouse_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
)

// eventhouseResource defines the resource structure for managing Eventhouses.
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/ml_experiment_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/pipeline_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
)

// Define the resource.
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/provider/schema"
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
)

// Ensure the implementation satisfies the expected interfaces.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
)

// Define the resource for semantic model user assignment.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
)

// Define the resource.
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/workspace_git_resource2.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/workspace_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/workspace_user_assignment_ressource.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
"terraform-microsoft-fabric/internal/apiclient"
"terraform-provider-microsoftfabric/internal/apiclient"
)

// Define the resource.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/hashicorp/terraform-plugin-framework/providerserver"

"terraform-microsoft-fabric/internal/provider"
"terraform-provider-microsoftfabric/internal/provider"
)

// Run "go generate" to format example terraform files and generate the docs for the registry/website
Expand Down

0 comments on commit 2d8ed06

Please sign in to comment.