Skip to content

Commit

Permalink
chore: Prepare for 4.0.0 release
Browse files Browse the repository at this point in the history
The next release will be a `major` semver. Start specifying the correct
version in the `go.mod` so that `go get` will work with our tags.

Ref: LOG-20552
  • Loading branch information
darinspivey committed Aug 29, 2024
1 parent 42025b7 commit 66d334f
Show file tree
Hide file tree
Showing 154 changed files with 215 additions and 215 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ terraform {
required_providers {
mezmo = {
source = "mezmo/mezmo"
version = "~> 3.0.0"
version = "~> 4.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
mezmo = {
source = "mezmo/mezmo"
version = "~> 3.0.0"
version = "~> 4.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mezmo/terraform-provider-mezmo
module github.com/mezmo/terraform-provider-mezmo/v4

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion internal/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"context"

"github.com/hashicorp/terraform-plugin-log/tflog"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

type Client interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/client/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http"

"github.com/hashicorp/terraform-plugin-log/tflog"
"github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

type validationError struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/access_key_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"

"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/access_key_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest"
)

func TestAccessKeyResource(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions internal/provider/alert_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"

"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/alerts"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/alerts"
)

type AlertModel interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/alert_resource_definitions.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"

. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/alerts"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/alerts"
)

func NewThresholdAlertResource() resource.Resource {
Expand Down
6 changes: 3 additions & 3 deletions internal/provider/destination_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"

"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/destinations"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/destinations"
)

type DestinationModel interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/destination_resource_definitions.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"

. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/destinations"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/destinations"
)

func NewAzureBlobStorageDestinationResource() resource.Resource {
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/access_key.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/schema/stringplanmodifier"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
)

type AccessKeyResourceModel struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/alerts/absence.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/diag"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const ALERT_TYPE_ABSENCE = "absence"
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/alerts/base_model.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
"github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

type SchemaAttributes map[string]schema.Attribute
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/alerts/change.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const ALERT_TYPE_CHANGE = "change"
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/alerts/test/absence_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest"
)

func TestAccAbsenceAlert_success(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/alerts/test/change_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest"
)

func TestAccChangeAlert_success(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/alerts/test/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package alerts
import (
"github.com/hashicorp/terraform-plugin-framework/providerserver"
"github.com/hashicorp/terraform-plugin-go/tfprotov6"
"github.com/mezmo/terraform-provider-mezmo/internal/provider"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/provider"
)

var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/alerts/test/threshold_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest"
)

func TestAccThresholdAlert_success(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/alerts/threshold.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const ALERT_TYPE_THRESHOLD = "threshold"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/azure_blob_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const AZURE_BLOB_STORAGE_DESTINATION_TYPE_NAME = "azure_blob_storage"
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/models/destinations/blackhole.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/schema"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
)

const BLACKHOLE_DESTINATION_NODE_NAME = "blackhole"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/datadog_logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
"github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const DATADOG_LOGS_DESTINATION_TYPE_NAME = "datadog_logs"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/datadog_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
"github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const DATADOG_METRICS_DESTINATION_TYPE_NAME = "datadog_metrics"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/elasticsearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const ELASTICSEARCH_DESTINATION_TYPE_NAME = "elasticsearch"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/gcp_cloud_monitoring.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const GCP_CLOUD_MONITORING_DESTINATION_TYPE_NAME = "gcp_cloud_monitoring"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/gcp_cloud_operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const GCP_CLOUD_OPERATIONS_DESTINATION_TYPE_NAME = "gcp_cloud_operations"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/gcp_cloud_pubsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const GCP_CLOUD_PUBSUB_DESTINATION_TYPE_NAME = "gcp_cloud_pubsub"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/gcp_cloud_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const GCP_CLOUD_STORAGE_DESTINATION_TYPE_NAME = "gcp_cloud_storage"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/honeycomb_logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const HONEYCOMB_LOGS_DESTINATION_TYPE_NAME = "honeycomb_logs"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
"github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const HTTP_DESTINATION_TYPE_NAME = "http"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
"github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
"github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const KAFKA_DESTINATION_TYPE_NAME = "kafka"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/loki.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const LOKI_DESTINATION_TYPE_NAME = "loki"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/mezmo.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const MEZMO_DESTINATION_TYPE_NAME = "logs"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/new_relic.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const NEWRELIC_DESTINATION_TYPE_NAME = "new_relic"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const PROMETHEUS_REMOTE_WRITE_DESTINATION_TYPE_NAME = "prometheus_remote_write"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const S3_DESTINATION_TYPE_NAME = "s3"
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/models/destinations/splunk_hec_logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
. "github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
. "github.com/mezmo/terraform-provider-mezmo/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/client"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils"
)

const SPLUNK_HEC_LOGS_DESTINATION_TYPE_NAME = "splunk_hec_logs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
. "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest"
. "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest"
)

func TestAccAzureBlobStorageDestinationResource(t *testing.T) {
Expand Down
Loading

0 comments on commit 66d334f

Please sign in to comment.