Skip to content

Commit

Permalink
revert(plugin): revert service integration sources
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov committed Nov 9, 2023
1 parent 7906913 commit b32e49a
Show file tree
Hide file tree
Showing 31 changed files with 454 additions and 4,779 deletions.
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,9 @@ nav_order: 1

# Changelog

## [5.0.0] - YYYY-MM-DD

- Migrate `aiven_service_integration` to the Plugin Framework
- Deprecating `project_user`, `account_team` and `account_team_member` resources

## [X.Y.Z] - YYYY-MM-DD

- Deprecating `project_user`, `account_team` and `account_team_member` resources
- Fix unmarshalling empty userconfig crash

## [4.9.3] - 2023-10-27
Expand Down
5 changes: 1 addition & 4 deletions internal/plugin/provider.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Package provider is the implementation of the Aiven provider.
// Package plugin is the implementation of the Aiven provider.
package plugin

import (
Expand All @@ -14,7 +14,6 @@ import (
"github.com/aiven/terraform-provider-aiven/internal/common"
"github.com/aiven/terraform-provider-aiven/internal/plugin/errmsg"
"github.com/aiven/terraform-provider-aiven/internal/plugin/service/organization"
"github.com/aiven/terraform-provider-aiven/internal/plugin/service/serviceintegration"
)

// AivenProvider is the provider implementation for Aiven.
Expand Down Expand Up @@ -111,15 +110,13 @@ func (p *AivenProvider) Configure(
func (p *AivenProvider) Resources(context.Context) []func() resource.Resource {
return []func() resource.Resource{
organization.NewOrganizationResource,
serviceintegration.NewServiceIntegrationResource,
}
}

// DataSources returns the data sources supported by this provider.
func (p *AivenProvider) DataSources(context.Context) []func() datasource.DataSource {
return []func() datasource.DataSource{
organization.NewOrganizationDataSource,
serviceintegration.NewServiceIntegrationDataSource,
}
}

Expand Down
106 changes: 0 additions & 106 deletions internal/plugin/service/serviceintegration/models.go

This file was deleted.

This file was deleted.

Loading

0 comments on commit b32e49a

Please sign in to comment.