diff --git a/docs/index.md b/docs/index.md index 29123be3..9b5c0a4e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,7 +17,7 @@ terraform { required_providers { mezmo = { source = "mezmo/mezmo" - version = "~> 3.0.0" + version = "~> 4.0.0" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 1300b87b..8ebe294d 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { mezmo = { source = "mezmo/mezmo" - version = "~> 3.0.0" + version = "~> 4.0.0" } } } diff --git a/go.mod b/go.mod index 7e09e8af..c086ff6c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/mezmo/terraform-provider-mezmo +module github.com/mezmo/terraform-provider-mezmo/v4 go 1.21 diff --git a/internal/client/client.go b/internal/client/client.go index 86a9cc59..4f8fe45e 100644 --- a/internal/client/client.go +++ b/internal/client/client.go @@ -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 { diff --git a/internal/client/errors.go b/internal/client/errors.go index 25461696..ceb1afd2 100644 --- a/internal/client/errors.go +++ b/internal/client/errors.go @@ -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 { diff --git a/internal/provider/access_key_resource.go b/internal/provider/access_key_resource.go index 292b13ea..5da1ac19 100644 --- a/internal/provider/access_key_resource.go +++ b/internal/provider/access_key_resource.go @@ -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 ( diff --git a/internal/provider/access_key_resource_test.go b/internal/provider/access_key_resource_test.go index e1d5594c..f5faf28a 100644 --- a/internal/provider/access_key_resource_test.go +++ b/internal/provider/access_key_resource_test.go @@ -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) { diff --git a/internal/provider/alert_resource.go b/internal/provider/alert_resource.go index 40bd432b..e0e5623d 100644 --- a/internal/provider/alert_resource.go +++ b/internal/provider/alert_resource.go @@ -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 { diff --git a/internal/provider/alert_resource_definitions.go b/internal/provider/alert_resource_definitions.go index cfa8e0d3..79ca6e36 100644 --- a/internal/provider/alert_resource_definitions.go +++ b/internal/provider/alert_resource_definitions.go @@ -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 { diff --git a/internal/provider/destination_resource.go b/internal/provider/destination_resource.go index 38d2c6df..dbbfcb3f 100644 --- a/internal/provider/destination_resource.go +++ b/internal/provider/destination_resource.go @@ -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 { diff --git a/internal/provider/destination_resource_definitions.go b/internal/provider/destination_resource_definitions.go index c2aecb36..66d45d5e 100644 --- a/internal/provider/destination_resource_definitions.go +++ b/internal/provider/destination_resource_definitions.go @@ -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 { diff --git a/internal/provider/models/access_key.go b/internal/provider/models/access_key.go index 5337a8eb..19977a42 100644 --- a/internal/provider/models/access_key.go +++ b/internal/provider/models/access_key.go @@ -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 { diff --git a/internal/provider/models/alerts/absence.go b/internal/provider/models/alerts/absence.go index f35fe683..8d520f35 100644 --- a/internal/provider/models/alerts/absence.go +++ b/internal/provider/models/alerts/absence.go @@ -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" diff --git a/internal/provider/models/alerts/base_model.go b/internal/provider/models/alerts/base_model.go index 6be6b0eb..486a5d59 100644 --- a/internal/provider/models/alerts/base_model.go +++ b/internal/provider/models/alerts/base_model.go @@ -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 diff --git a/internal/provider/models/alerts/change.go b/internal/provider/models/alerts/change.go index 5da66c37..fe25eba2 100644 --- a/internal/provider/models/alerts/change.go +++ b/internal/provider/models/alerts/change.go @@ -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" diff --git a/internal/provider/models/alerts/test/absence_test.go b/internal/provider/models/alerts/test/absence_test.go index 17308990..07d97976 100644 --- a/internal/provider/models/alerts/test/absence_test.go +++ b/internal/provider/models/alerts/test/absence_test.go @@ -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) { diff --git a/internal/provider/models/alerts/test/change_test.go b/internal/provider/models/alerts/test/change_test.go index 963e2afc..37dcc7f7 100644 --- a/internal/provider/models/alerts/test/change_test.go +++ b/internal/provider/models/alerts/test/change_test.go @@ -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) { diff --git a/internal/provider/models/alerts/test/provider_test.go b/internal/provider/models/alerts/test/provider_test.go index ee60d5c2..42c92316 100644 --- a/internal/provider/models/alerts/test/provider_test.go +++ b/internal/provider/models/alerts/test/provider_test.go @@ -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){ diff --git a/internal/provider/models/alerts/test/threshold_test.go b/internal/provider/models/alerts/test/threshold_test.go index 43881630..9fe013d9 100644 --- a/internal/provider/models/alerts/test/threshold_test.go +++ b/internal/provider/models/alerts/test/threshold_test.go @@ -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) { diff --git a/internal/provider/models/alerts/threshold.go b/internal/provider/models/alerts/threshold.go index 4a244131..66b70e5c 100644 --- a/internal/provider/models/alerts/threshold.go +++ b/internal/provider/models/alerts/threshold.go @@ -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" diff --git a/internal/provider/models/destinations/azure_blob_storage.go b/internal/provider/models/destinations/azure_blob_storage.go index e19d9fd0..ff62fc58 100644 --- a/internal/provider/models/destinations/azure_blob_storage.go +++ b/internal/provider/models/destinations/azure_blob_storage.go @@ -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" diff --git a/internal/provider/models/destinations/blackhole.go b/internal/provider/models/destinations/blackhole.go index a1c13551..fb0356dd 100644 --- a/internal/provider/models/destinations/blackhole.go +++ b/internal/provider/models/destinations/blackhole.go @@ -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" diff --git a/internal/provider/models/destinations/datadog_logs.go b/internal/provider/models/destinations/datadog_logs.go index 5a1b6c87..4df7fc03 100644 --- a/internal/provider/models/destinations/datadog_logs.go +++ b/internal/provider/models/destinations/datadog_logs.go @@ -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" diff --git a/internal/provider/models/destinations/datadog_metrics.go b/internal/provider/models/destinations/datadog_metrics.go index aa4be51d..2ba9df69 100644 --- a/internal/provider/models/destinations/datadog_metrics.go +++ b/internal/provider/models/destinations/datadog_metrics.go @@ -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" diff --git a/internal/provider/models/destinations/elasticsearch.go b/internal/provider/models/destinations/elasticsearch.go index f353cd14..b16c6151 100644 --- a/internal/provider/models/destinations/elasticsearch.go +++ b/internal/provider/models/destinations/elasticsearch.go @@ -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" diff --git a/internal/provider/models/destinations/gcp_cloud_monitoring.go b/internal/provider/models/destinations/gcp_cloud_monitoring.go index 925ae9a4..2b23783e 100644 --- a/internal/provider/models/destinations/gcp_cloud_monitoring.go +++ b/internal/provider/models/destinations/gcp_cloud_monitoring.go @@ -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" diff --git a/internal/provider/models/destinations/gcp_cloud_operations.go b/internal/provider/models/destinations/gcp_cloud_operations.go index c627fba8..eaf69b8d 100644 --- a/internal/provider/models/destinations/gcp_cloud_operations.go +++ b/internal/provider/models/destinations/gcp_cloud_operations.go @@ -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" diff --git a/internal/provider/models/destinations/gcp_cloud_pubsub.go b/internal/provider/models/destinations/gcp_cloud_pubsub.go index 0716ebc3..b0b9a6c6 100644 --- a/internal/provider/models/destinations/gcp_cloud_pubsub.go +++ b/internal/provider/models/destinations/gcp_cloud_pubsub.go @@ -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" diff --git a/internal/provider/models/destinations/gcp_cloud_storage.go b/internal/provider/models/destinations/gcp_cloud_storage.go index 081af609..f286e0f5 100644 --- a/internal/provider/models/destinations/gcp_cloud_storage.go +++ b/internal/provider/models/destinations/gcp_cloud_storage.go @@ -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" diff --git a/internal/provider/models/destinations/honeycomb_logs.go b/internal/provider/models/destinations/honeycomb_logs.go index fcd31d65..ba8f9ec2 100644 --- a/internal/provider/models/destinations/honeycomb_logs.go +++ b/internal/provider/models/destinations/honeycomb_logs.go @@ -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" diff --git a/internal/provider/models/destinations/http.go b/internal/provider/models/destinations/http.go index d1e9bcd4..1e0c37e4 100644 --- a/internal/provider/models/destinations/http.go +++ b/internal/provider/models/destinations/http.go @@ -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" diff --git a/internal/provider/models/destinations/kafka.go b/internal/provider/models/destinations/kafka.go index abe21c6a..62c36567 100644 --- a/internal/provider/models/destinations/kafka.go +++ b/internal/provider/models/destinations/kafka.go @@ -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" diff --git a/internal/provider/models/destinations/loki.go b/internal/provider/models/destinations/loki.go index 041202a8..9fc36218 100644 --- a/internal/provider/models/destinations/loki.go +++ b/internal/provider/models/destinations/loki.go @@ -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" diff --git a/internal/provider/models/destinations/mezmo.go b/internal/provider/models/destinations/mezmo.go index cbd0bd73..e2c22e2f 100644 --- a/internal/provider/models/destinations/mezmo.go +++ b/internal/provider/models/destinations/mezmo.go @@ -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" diff --git a/internal/provider/models/destinations/new_relic.go b/internal/provider/models/destinations/new_relic.go index 68b14324..2a398dbe 100644 --- a/internal/provider/models/destinations/new_relic.go +++ b/internal/provider/models/destinations/new_relic.go @@ -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" diff --git a/internal/provider/models/destinations/prometheus_remote_write.go b/internal/provider/models/destinations/prometheus_remote_write.go index 0487705b..fc39f8b0 100644 --- a/internal/provider/models/destinations/prometheus_remote_write.go +++ b/internal/provider/models/destinations/prometheus_remote_write.go @@ -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" diff --git a/internal/provider/models/destinations/s3.go b/internal/provider/models/destinations/s3.go index 913729b2..1e83e229 100644 --- a/internal/provider/models/destinations/s3.go +++ b/internal/provider/models/destinations/s3.go @@ -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" diff --git a/internal/provider/models/destinations/splunk_hec_logs.go b/internal/provider/models/destinations/splunk_hec_logs.go index 4b7fb0df..b1f8d8e3 100644 --- a/internal/provider/models/destinations/splunk_hec_logs.go +++ b/internal/provider/models/destinations/splunk_hec_logs.go @@ -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" diff --git a/internal/provider/models/destinations/test/azure_blob_storage_test.go b/internal/provider/models/destinations/test/azure_blob_storage_test.go index 4ef57ad3..9faf86da 100644 --- a/internal/provider/models/destinations/test/azure_blob_storage_test.go +++ b/internal/provider/models/destinations/test/azure_blob_storage_test.go @@ -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) { diff --git a/internal/provider/models/destinations/test/blackhole_test.go b/internal/provider/models/destinations/test/blackhole_test.go index 340d25d5..cb9aac73 100644 --- a/internal/provider/models/destinations/test/blackhole_test.go +++ b/internal/provider/models/destinations/test/blackhole_test.go @@ -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 TestAccBlackholeDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/datadog_logs_test.go b/internal/provider/models/destinations/test/datadog_logs_test.go index 64417047..41b89412 100644 --- a/internal/provider/models/destinations/test/datadog_logs_test.go +++ b/internal/provider/models/destinations/test/datadog_logs_test.go @@ -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 TestAccDatadogLogsDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/datadog_metrics_test.go b/internal/provider/models/destinations/test/datadog_metrics_test.go index 53db4576..ddd0da1d 100644 --- a/internal/provider/models/destinations/test/datadog_metrics_test.go +++ b/internal/provider/models/destinations/test/datadog_metrics_test.go @@ -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 TestAccDatadogMetricsDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/elasticsearch_test.go b/internal/provider/models/destinations/test/elasticsearch_test.go index c7e47cb2..f49c0e36 100644 --- a/internal/provider/models/destinations/test/elasticsearch_test.go +++ b/internal/provider/models/destinations/test/elasticsearch_test.go @@ -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 TestAccElasticSearchDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/gcp_cloud_monitoring_test.go b/internal/provider/models/destinations/test/gcp_cloud_monitoring_test.go index 97c48431..6fa082ea 100644 --- a/internal/provider/models/destinations/test/gcp_cloud_monitoring_test.go +++ b/internal/provider/models/destinations/test/gcp_cloud_monitoring_test.go @@ -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 TestAccGcpCloudMonitoringSinkResource_errors(t *testing.T) { diff --git a/internal/provider/models/destinations/test/gcp_cloud_operations_test.go b/internal/provider/models/destinations/test/gcp_cloud_operations_test.go index 438da0c7..695bfd2c 100644 --- a/internal/provider/models/destinations/test/gcp_cloud_operations_test.go +++ b/internal/provider/models/destinations/test/gcp_cloud_operations_test.go @@ -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 TestGcpCloudOperationsSinkResource_errors(t *testing.T) { diff --git a/internal/provider/models/destinations/test/gcp_cloud_pubsub_test.go b/internal/provider/models/destinations/test/gcp_cloud_pubsub_test.go index b0267563..43c90266 100644 --- a/internal/provider/models/destinations/test/gcp_cloud_pubsub_test.go +++ b/internal/provider/models/destinations/test/gcp_cloud_pubsub_test.go @@ -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 TestAccGcpCloudPubSubSinkResource_errors(t *testing.T) { diff --git a/internal/provider/models/destinations/test/gcp_cloud_storage_test.go b/internal/provider/models/destinations/test/gcp_cloud_storage_test.go index 8d006c0d..3717d9b7 100644 --- a/internal/provider/models/destinations/test/gcp_cloud_storage_test.go +++ b/internal/provider/models/destinations/test/gcp_cloud_storage_test.go @@ -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 TestAccGcpCloudStorageSinkResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/honeycomb_logs_test.go b/internal/provider/models/destinations/test/honeycomb_logs_test.go index 35855891..eedd5c48 100644 --- a/internal/provider/models/destinations/test/honeycomb_logs_test.go +++ b/internal/provider/models/destinations/test/honeycomb_logs_test.go @@ -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 TestAccHoneycombLogsDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/http_test.go b/internal/provider/models/destinations/test/http_test.go index 3ffcdc15..f6baf229 100644 --- a/internal/provider/models/destinations/test/http_test.go +++ b/internal/provider/models/destinations/test/http_test.go @@ -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 TestAccHttpDestination(t *testing.T) { diff --git a/internal/provider/models/destinations/test/kafka_test.go b/internal/provider/models/destinations/test/kafka_test.go index 9a4b84dc..79f38a28 100644 --- a/internal/provider/models/destinations/test/kafka_test.go +++ b/internal/provider/models/destinations/test/kafka_test.go @@ -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 TestAccKafkaDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/loki_test.go b/internal/provider/models/destinations/test/loki_test.go index 7c6f9739..cc2da005 100644 --- a/internal/provider/models/destinations/test/loki_test.go +++ b/internal/provider/models/destinations/test/loki_test.go @@ -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 TestAccLokiDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/mezmo_test.go b/internal/provider/models/destinations/test/mezmo_test.go index 2dc35e42..c4c944e6 100644 --- a/internal/provider/models/destinations/test/mezmo_test.go +++ b/internal/provider/models/destinations/test/mezmo_test.go @@ -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 TestAccMezmoDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/new_relic_test.go b/internal/provider/models/destinations/test/new_relic_test.go index 9a4ad72a..fd7d7c6c 100644 --- a/internal/provider/models/destinations/test/new_relic_test.go +++ b/internal/provider/models/destinations/test/new_relic_test.go @@ -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 TestAccNewRelicDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/prometheus_remote_write_test.go b/internal/provider/models/destinations/test/prometheus_remote_write_test.go index c299b0d2..22e4a460 100644 --- a/internal/provider/models/destinations/test/prometheus_remote_write_test.go +++ b/internal/provider/models/destinations/test/prometheus_remote_write_test.go @@ -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 TestAccPrometheusDestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/provider_test.go b/internal/provider/models/destinations/test/provider_test.go index 5dbe68b0..a60b9757 100644 --- a/internal/provider/models/destinations/test/provider_test.go +++ b/internal/provider/models/destinations/test/provider_test.go @@ -9,8 +9,8 @@ import ( "github.com/hashicorp/terraform-plugin-go/tfprotov6" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/mezmo/terraform-provider-mezmo/internal/provider" - "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest" ) var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){ diff --git a/internal/provider/models/destinations/test/s3_test.go b/internal/provider/models/destinations/test/s3_test.go index 7127aa69..179ac0fd 100644 --- a/internal/provider/models/destinations/test/s3_test.go +++ b/internal/provider/models/destinations/test/s3_test.go @@ -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 TestAccS3DestinationResource(t *testing.T) { diff --git a/internal/provider/models/destinations/test/splunk_hec_logs_test.go b/internal/provider/models/destinations/test/splunk_hec_logs_test.go index 90ddf224..e609ed7a 100644 --- a/internal/provider/models/destinations/test/splunk_hec_logs_test.go +++ b/internal/provider/models/destinations/test/splunk_hec_logs_test.go @@ -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 TestAccSplunkHecLogsDestinationResource(t *testing.T) { diff --git a/internal/provider/models/modelutils/test/conditional_types_test.go b/internal/provider/models/modelutils/test/conditional_types_test.go index c24d0e10..58f7029e 100644 --- a/internal/provider/models/modelutils/test/conditional_types_test.go +++ b/internal/provider/models/modelutils/test/conditional_types_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/mezmo/terraform-provider-mezmo/internal/provider/models/modelutils" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils" "github.com/stretchr/testify/assert" ) diff --git a/internal/provider/models/pipeline.go b/internal/provider/models/pipeline.go index 2908bf3d..b5534d01 100644 --- a/internal/provider/models/pipeline.go +++ b/internal/provider/models/pipeline.go @@ -5,7 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) type PipelineResourceModel struct { diff --git a/internal/provider/models/processors/aggregate.go b/internal/provider/models/processors/aggregate.go index 1dfcc8cd..f2d44a5d 100644 --- a/internal/provider/models/processors/aggregate.go +++ b/internal/provider/models/processors/aggregate.go @@ -7,8 +7,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 AGGREGATE_PROCESSOR_NODE_NAME = "aggregate" diff --git a/internal/provider/models/processors/base_parse_model.go b/internal/provider/models/processors/base_parse_model.go index d77b7759..ae2b530e 100644 --- a/internal/provider/models/processors/base_parse_model.go +++ b/internal/provider/models/processors/base_parse_model.go @@ -8,7 +8,7 @@ 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/provider/models/modelutils" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils" ) var base_options_parser_schema = SchemaAttributes{ diff --git a/internal/provider/models/processors/compact_fields.go b/internal/provider/models/processors/compact_fields.go index b480a9fc..0f4d1669 100644 --- a/internal/provider/models/processors/compact_fields.go +++ b/internal/provider/models/processors/compact_fields.go @@ -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 COMPACT_FIELDS_PROCESSOR_NODE_NAME = "compact-fields" diff --git a/internal/provider/models/processors/decrypt_fields.go b/internal/provider/models/processors/decrypt_fields.go index 3d26a8a7..6d5dbfa1 100644 --- a/internal/provider/models/processors/decrypt_fields.go +++ b/internal/provider/models/processors/decrypt_fields.go @@ -7,8 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault" "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 DECRYPT_FIELDS_PROCESSOR_NODE_NAME = "decrypt-fields" diff --git a/internal/provider/models/processors/dedupe.go b/internal/provider/models/processors/dedupe.go index 3b7373c2..e4df8ab5 100644 --- a/internal/provider/models/processors/dedupe.go +++ b/internal/provider/models/processors/dedupe.go @@ -10,8 +10,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 DEDUPE_PROCESSOR_NODE_NAME = "dedupe" diff --git a/internal/provider/models/processors/drop_fields.go b/internal/provider/models/processors/drop_fields.go index 1c1b63b3..b46b6ee8 100644 --- a/internal/provider/models/processors/drop_fields.go +++ b/internal/provider/models/processors/drop_fields.go @@ -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" - . "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 DROP_FIELDS_PROCESSOR_NODE_NAME = "drop-fields" diff --git a/internal/provider/models/processors/encrypt_fields.go b/internal/provider/models/processors/encrypt_fields.go index 3b15de0e..81e6c42f 100644 --- a/internal/provider/models/processors/encrypt_fields.go +++ b/internal/provider/models/processors/encrypt_fields.go @@ -7,8 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault" "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 ENCRYPT_FIELDS_PROCESSOR_NODE_NAME = "encrypt-fields" diff --git a/internal/provider/models/processors/event_to_metric.go b/internal/provider/models/processors/event_to_metric.go index dbec9bfd..524d9e30 100644 --- a/internal/provider/models/processors/event_to_metric.go +++ b/internal/provider/models/processors/event_to_metric.go @@ -12,8 +12,8 @@ import ( "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 EVENT_TO_METRIC_PROCESSOR_NODE_NAME = "event-to-metric" diff --git a/internal/provider/models/processors/filter.go b/internal/provider/models/processors/filter.go index 7a33e599..aa3d7785 100644 --- a/internal/provider/models/processors/filter.go +++ b/internal/provider/models/processors/filter.go @@ -7,8 +7,8 @@ import ( "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 FILTER_PROCESSOR_NODE_NAME = "filter" diff --git a/internal/provider/models/processors/flatten_fields.go b/internal/provider/models/processors/flatten_fields.go index 1bd0fa56..3c92a497 100644 --- a/internal/provider/models/processors/flatten_fields.go +++ b/internal/provider/models/processors/flatten_fields.go @@ -9,8 +9,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 FLATTEN_FIELDS_PROCESSOR_NODE_NAME = "flatten-fields" diff --git a/internal/provider/models/processors/map_fields.go b/internal/provider/models/processors/map_fields.go index 1f0d6cf5..66d9486b 100644 --- a/internal/provider/models/processors/map_fields.go +++ b/internal/provider/models/processors/map_fields.go @@ -10,8 +10,8 @@ import ( "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 MAP_FIELDS_PROCESSOR_NODE_NAME = "map-fields" diff --git a/internal/provider/models/processors/metrics_tag_cardinality_limit.go b/internal/provider/models/processors/metrics_tag_cardinality_limit.go index fa19d614..91e5e0fc 100644 --- a/internal/provider/models/processors/metrics_tag_cardinality_limit.go +++ b/internal/provider/models/processors/metrics_tag_cardinality_limit.go @@ -9,8 +9,8 @@ import ( "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" ) type MetricsTagCardinalityLimitProcessorModel struct { diff --git a/internal/provider/models/processors/parse.go b/internal/provider/models/processors/parse.go index 3e69f005..14b8ae71 100644 --- a/internal/provider/models/processors/parse.go +++ b/internal/provider/models/processors/parse.go @@ -11,8 +11,8 @@ 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/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 PARSE_PROCESSOR_NODE_NAME = "parse" diff --git a/internal/provider/models/processors/parse_sequentially.go b/internal/provider/models/processors/parse_sequentially.go index 87e77004..1a9ca377 100644 --- a/internal/provider/models/processors/parse_sequentially.go +++ b/internal/provider/models/processors/parse_sequentially.go @@ -13,8 +13,8 @@ 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/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 PARSE_SEQUENTIALLY_PROCESSOR_TYPE_NAME = "parse_sequentially" diff --git a/internal/provider/models/processors/reduce.go b/internal/provider/models/processors/reduce.go index 8762dfa4..fcc60b27 100644 --- a/internal/provider/models/processors/reduce.go +++ b/internal/provider/models/processors/reduce.go @@ -12,8 +12,8 @@ import ( "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 REDUCE_PROCESSOR_NODE_NAME = "reduce" diff --git a/internal/provider/models/processors/route.go b/internal/provider/models/processors/route.go index 0f445dbb..a932cf48 100644 --- a/internal/provider/models/processors/route.go +++ b/internal/provider/models/processors/route.go @@ -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" ) type RouteProcessorModel struct { diff --git a/internal/provider/models/processors/sample.go b/internal/provider/models/processors/sample.go index 3e434dc0..2f8ea36a 100644 --- a/internal/provider/models/processors/sample.go +++ b/internal/provider/models/processors/sample.go @@ -14,8 +14,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 SAMPLE_PROCESSOR_NODE_NAME = "sample" diff --git a/internal/provider/models/processors/script_execution.go b/internal/provider/models/processors/script_execution.go index a0762770..a61a2df0 100644 --- a/internal/provider/models/processors/script_execution.go +++ b/internal/provider/models/processors/script_execution.go @@ -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 SCRIPT_EXECUTION_PROCESSOR_NODE_NAME = "js-script" diff --git a/internal/provider/models/processors/set_timestamp.go b/internal/provider/models/processors/set_timestamp.go index f6c35587..d3beaf46 100644 --- a/internal/provider/models/processors/set_timestamp.go +++ b/internal/provider/models/processors/set_timestamp.go @@ -9,8 +9,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 SET_TIMESTAMP_PROCESSOR_TYPE_NAME = "set_timestamp" diff --git a/internal/provider/models/processors/stringify.go b/internal/provider/models/processors/stringify.go index c3a883cd..76d38b25 100644 --- a/internal/provider/models/processors/stringify.go +++ b/internal/provider/models/processors/stringify.go @@ -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 STRINGIFY_PROCESSOR_NODE_NAME = "stringify" diff --git a/internal/provider/models/processors/test/aggregate_test.go b/internal/provider/models/processors/test/aggregate_test.go index 791d5735..e8965bd4 100644 --- a/internal/provider/models/processors/test/aggregate_test.go +++ b/internal/provider/models/processors/test/aggregate_test.go @@ -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 TestAccAggregateProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/compact_fields_test.go b/internal/provider/models/processors/test/compact_fields_test.go index c1acc981..00e04909 100644 --- a/internal/provider/models/processors/test/compact_fields_test.go +++ b/internal/provider/models/processors/test/compact_fields_test.go @@ -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 TestAccCompactFieldsProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/decrypt_fields_test.go b/internal/provider/models/processors/test/decrypt_fields_test.go index c7dbe171..cb0759fd 100644 --- a/internal/provider/models/processors/test/decrypt_fields_test.go +++ b/internal/provider/models/processors/test/decrypt_fields_test.go @@ -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 TestAccDecryptFieldsProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/dedupe_test.go b/internal/provider/models/processors/test/dedupe_test.go index a73499c3..369ed8f8 100644 --- a/internal/provider/models/processors/test/dedupe_test.go +++ b/internal/provider/models/processors/test/dedupe_test.go @@ -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 TestAccDedupeProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/drop_fields_test.go b/internal/provider/models/processors/test/drop_fields_test.go index 6c30e73b..639dadfe 100644 --- a/internal/provider/models/processors/test/drop_fields_test.go +++ b/internal/provider/models/processors/test/drop_fields_test.go @@ -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 TestAccDropFieldsProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/encrypt_fields_test.go b/internal/provider/models/processors/test/encrypt_fields_test.go index 523ae4ef..07ee4312 100644 --- a/internal/provider/models/processors/test/encrypt_fields_test.go +++ b/internal/provider/models/processors/test/encrypt_fields_test.go @@ -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 TestAccEncryptFieldsProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/event_to_metric_test.go b/internal/provider/models/processors/test/event_to_metric_test.go index faea9fb7..b6a1b4a8 100644 --- a/internal/provider/models/processors/test/event_to_metric_test.go +++ b/internal/provider/models/processors/test/event_to_metric_test.go @@ -6,7 +6,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 TestAccEventToMetricProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/filter_test.go b/internal/provider/models/processors/test/filter_test.go index 6ae8aa06..b6207940 100644 --- a/internal/provider/models/processors/test/filter_test.go +++ b/internal/provider/models/processors/test/filter_test.go @@ -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 TestAccFilterProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/flatten_fields_test.go b/internal/provider/models/processors/test/flatten_fields_test.go index ffa4beed..86220438 100644 --- a/internal/provider/models/processors/test/flatten_fields_test.go +++ b/internal/provider/models/processors/test/flatten_fields_test.go @@ -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 TestAccFlattenFieldsProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/map_fields_test.go b/internal/provider/models/processors/test/map_fields_test.go index 32022f08..f8ed1fa6 100644 --- a/internal/provider/models/processors/test/map_fields_test.go +++ b/internal/provider/models/processors/test/map_fields_test.go @@ -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 TestAccMapFieldsProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/metrics_tag_cardinality_limit_test.go b/internal/provider/models/processors/test/metrics_tag_cardinality_limit_test.go index 948fad12..8a794a12 100644 --- a/internal/provider/models/processors/test/metrics_tag_cardinality_limit_test.go +++ b/internal/provider/models/processors/test/metrics_tag_cardinality_limit_test.go @@ -6,7 +6,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 TestAccMetricsTagCardinalityLimitProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/parse_sequentially_test.go b/internal/provider/models/processors/test/parse_sequentially_test.go index 135157a1..1cae92a4 100644 --- a/internal/provider/models/processors/test/parse_sequentially_test.go +++ b/internal/provider/models/processors/test/parse_sequentially_test.go @@ -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 TestAccParseSequentiallyProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/parse_test.go b/internal/provider/models/processors/test/parse_test.go index bcbe3ff6..952a73ae 100644 --- a/internal/provider/models/processors/test/parse_test.go +++ b/internal/provider/models/processors/test/parse_test.go @@ -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 TestAccParseProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/provider_test.go b/internal/provider/models/processors/test/provider_test.go index dc1d1978..8564c1c2 100644 --- a/internal/provider/models/processors/test/provider_test.go +++ b/internal/provider/models/processors/test/provider_test.go @@ -9,8 +9,8 @@ import ( "github.com/hashicorp/terraform-plugin-go/tfprotov6" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/mezmo/terraform-provider-mezmo/internal/provider" - "github.com/mezmo/terraform-provider-mezmo/internal/provider/providertest" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/providertest" ) var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){ diff --git a/internal/provider/models/processors/test/reduce_test.go b/internal/provider/models/processors/test/reduce_test.go index 429e929c..c4a44395 100644 --- a/internal/provider/models/processors/test/reduce_test.go +++ b/internal/provider/models/processors/test/reduce_test.go @@ -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 TestAccReduceProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/route_test.go b/internal/provider/models/processors/test/route_test.go index 872be201..d4ada7bf 100644 --- a/internal/provider/models/processors/test/route_test.go +++ b/internal/provider/models/processors/test/route_test.go @@ -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 TestAccRouteProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/sample_test.go b/internal/provider/models/processors/test/sample_test.go index 35580fcf..53d2bcda 100644 --- a/internal/provider/models/processors/test/sample_test.go +++ b/internal/provider/models/processors/test/sample_test.go @@ -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 TestAccSampleProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/script_execution_test.go b/internal/provider/models/processors/test/script_execution_test.go index f7abf7a6..5f38670d 100644 --- a/internal/provider/models/processors/test/script_execution_test.go +++ b/internal/provider/models/processors/test/script_execution_test.go @@ -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 TestAccScriptExecutionProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/test/set_timestamp_test.go b/internal/provider/models/processors/test/set_timestamp_test.go index 968fe704..fbcc512b 100644 --- a/internal/provider/models/processors/test/set_timestamp_test.go +++ b/internal/provider/models/processors/test/set_timestamp_test.go @@ -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 TestAccSetTimestampProcessor_error(t *testing.T) { diff --git a/internal/provider/models/processors/test/stringify_test.go b/internal/provider/models/processors/test/stringify_test.go index 92a4894d..4db0d053 100644 --- a/internal/provider/models/processors/test/stringify_test.go +++ b/internal/provider/models/processors/test/stringify_test.go @@ -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 TestAccStringifyProcessorResource(t *testing.T) { diff --git a/internal/provider/models/processors/test/unroll_test.go b/internal/provider/models/processors/test/unroll_test.go index b4bbdf32..f3e13049 100644 --- a/internal/provider/models/processors/test/unroll_test.go +++ b/internal/provider/models/processors/test/unroll_test.go @@ -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 TestAccUnrollProcessor(t *testing.T) { diff --git a/internal/provider/models/processors/unroll.go b/internal/provider/models/processors/unroll.go index 65b19440..695892f0 100644 --- a/internal/provider/models/processors/unroll.go +++ b/internal/provider/models/processors/unroll.go @@ -7,8 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault" "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 UNROLL_PROCESSOR_NODE_NAME = "unroll" diff --git a/internal/provider/models/publish_pipeline.go b/internal/provider/models/publish_pipeline.go index a3f0cdbb..3f2837a0 100644 --- a/internal/provider/models/publish_pipeline.go +++ b/internal/provider/models/publish_pipeline.go @@ -5,7 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" . "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 PublishPipelineResourceModel struct { diff --git a/internal/provider/models/shared_source.go b/internal/provider/models/shared_source.go index 7529d539..867920f8 100644 --- a/internal/provider/models/shared_source.go +++ b/internal/provider/models/shared_source.go @@ -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" ) var PUSH_SOURCE_TYPES = []string{ diff --git a/internal/provider/models/sources/agent.go b/internal/provider/models/sources/agent.go index 21700a9f..6fd87193 100644 --- a/internal/provider/models/sources/agent.go +++ b/internal/provider/models/sources/agent.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const AGENT_SOURCE_TYPE_NAME = "agent" diff --git a/internal/provider/models/sources/azure_event_hub.go b/internal/provider/models/sources/azure_event_hub.go index e6d770cb..a103dafe 100644 --- a/internal/provider/models/sources/azure_event_hub.go +++ b/internal/provider/models/sources/azure_event_hub.go @@ -8,8 +8,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_EVENT_HUB_SOURCE_TYPE_NAME = "azure_event_hub" diff --git a/internal/provider/models/sources/datadog.go b/internal/provider/models/sources/datadog.go index 2cacee78..fbf0126f 100644 --- a/internal/provider/models/sources/datadog.go +++ b/internal/provider/models/sources/datadog.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const DATADOG_SOURCE_NODE_NAME = "mezmo-datadog-source" diff --git a/internal/provider/models/sources/demo.go b/internal/provider/models/sources/demo.go index 14caa1f4..ce883c71 100644 --- a/internal/provider/models/sources/demo.go +++ b/internal/provider/models/sources/demo.go @@ -6,7 +6,7 @@ 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/v4/internal/client" ) const DEMO_SOURCE_NODE_NAME = "demo-logs" diff --git a/internal/provider/models/sources/fluent.go b/internal/provider/models/sources/fluent.go index 0c0f38dc..9fbb5e24 100644 --- a/internal/provider/models/sources/fluent.go +++ b/internal/provider/models/sources/fluent.go @@ -9,7 +9,7 @@ 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/v4/internal/client" ) const FLUENT_SOURCE_TYPE_NAME = "fluent" diff --git a/internal/provider/models/sources/http.go b/internal/provider/models/sources/http.go index 0c61c47c..a69339ca 100644 --- a/internal/provider/models/sources/http.go +++ b/internal/provider/models/sources/http.go @@ -9,7 +9,7 @@ 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/v4/internal/client" ) const HTTP_SOURCE_TYPE_NAME = "http" diff --git a/internal/provider/models/sources/kafka.go b/internal/provider/models/sources/kafka.go index dadf3db9..4f6a8784 100644 --- a/internal/provider/models/sources/kafka.go +++ b/internal/provider/models/sources/kafka.go @@ -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_SOURCE_TYPE_NAME = "kafka" diff --git a/internal/provider/models/sources/kinesis_firehose.go b/internal/provider/models/sources/kinesis_firehose.go index a0a4661a..3194765c 100644 --- a/internal/provider/models/sources/kinesis_firehose.go +++ b/internal/provider/models/sources/kinesis_firehose.go @@ -10,7 +10,7 @@ import ( "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/v4/internal/client" ) const KINESIS_FIREHOSE_SOURCE_TYPE_NAME = "kinesis_firehose" diff --git a/internal/provider/models/sources/log-analysis.go b/internal/provider/models/sources/log-analysis.go index 545d2266..ed8770a7 100644 --- a/internal/provider/models/sources/log-analysis.go +++ b/internal/provider/models/sources/log-analysis.go @@ -4,7 +4,7 @@ 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/v4/internal/client" ) const LOG_ANALYSIS_SOURCE_TYPE_NAME = "log_analysis" diff --git a/internal/provider/models/sources/logstash.go b/internal/provider/models/sources/logstash.go index d8e889bf..75daed97 100644 --- a/internal/provider/models/sources/logstash.go +++ b/internal/provider/models/sources/logstash.go @@ -9,7 +9,7 @@ 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/v4/internal/client" ) const LOGSTASH_SOURCE_TYPE_NAME = "logstash" diff --git a/internal/provider/models/sources/open_telemetry_logs.go b/internal/provider/models/sources/open_telemetry_logs.go index 379884f6..460f55be 100644 --- a/internal/provider/models/sources/open_telemetry_logs.go +++ b/internal/provider/models/sources/open_telemetry_logs.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const OPEN_TELEMETRY_LOGS_SOURCE_TYPE_NAME = "open_telemetry_logs" diff --git a/internal/provider/models/sources/open_telemetry_metrics.go b/internal/provider/models/sources/open_telemetry_metrics.go index 64d3bb5d..b4cef6e8 100644 --- a/internal/provider/models/sources/open_telemetry_metrics.go +++ b/internal/provider/models/sources/open_telemetry_metrics.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const OPEN_TELEMETRY_METRICS_SOURCE_TYPE_NAME = "open_telemetry_metrics" diff --git a/internal/provider/models/sources/open_telemetry_traces.go b/internal/provider/models/sources/open_telemetry_traces.go index 6baf4110..80546613 100644 --- a/internal/provider/models/sources/open_telemetry_traces.go +++ b/internal/provider/models/sources/open_telemetry_traces.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const OPEN_TELEMETRY_TRACES_SOURCE_TYPE_NAME = "open_telemetry_traces" diff --git a/internal/provider/models/sources/prometheus_remote_write.go b/internal/provider/models/sources/prometheus_remote_write.go index 688fc24e..64d3c979 100644 --- a/internal/provider/models/sources/prometheus_remote_write.go +++ b/internal/provider/models/sources/prometheus_remote_write.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const PROMETHEUS_REMOTE_WRITE_SOURCE_TYPE_NAME = "prometheus_remote_write" diff --git a/internal/provider/models/sources/s3.go b/internal/provider/models/sources/s3.go index ea5952dd..48b03243 100644 --- a/internal/provider/models/sources/s3.go +++ b/internal/provider/models/sources/s3.go @@ -10,9 +10,9 @@ 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/internal/provider/models/modelutils" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils" ) const S3_SOURCE_TYPE_NAME = "s3" diff --git a/internal/provider/models/sources/splunk-hec.go b/internal/provider/models/sources/splunk-hec.go index 87c6cae2..7e7d521b 100644 --- a/internal/provider/models/sources/splunk-hec.go +++ b/internal/provider/models/sources/splunk-hec.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const SPLUNK_HEC_SOURCE_TYPE_NAME = "splunk_hec" diff --git a/internal/provider/models/sources/sqs.go b/internal/provider/models/sources/sqs.go index b2b86673..ee2ba93c 100644 --- a/internal/provider/models/sources/sqs.go +++ b/internal/provider/models/sources/sqs.go @@ -9,8 +9,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 SQS_SOURCE_TYPE_NAME = "sqs" diff --git a/internal/provider/models/sources/test/agent_test.go b/internal/provider/models/sources/test/agent_test.go index 19798162..6b7e1385 100644 --- a/internal/provider/models/sources/test/agent_test.go +++ b/internal/provider/models/sources/test/agent_test.go @@ -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 TestAccAgentSourceResource(t *testing.T) { diff --git a/internal/provider/models/sources/test/azure_event_hub_test.go b/internal/provider/models/sources/test/azure_event_hub_test.go index 90de45d8..8918a663 100644 --- a/internal/provider/models/sources/test/azure_event_hub_test.go +++ b/internal/provider/models/sources/test/azure_event_hub_test.go @@ -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 TestAccAzureEventHubSourceResource(t *testing.T) { diff --git a/internal/provider/models/sources/test/datadog_test.go b/internal/provider/models/sources/test/datadog_test.go index 43455b49..24d9e7e0 100644 --- a/internal/provider/models/sources/test/datadog_test.go +++ b/internal/provider/models/sources/test/datadog_test.go @@ -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 TestAccDatadogSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/demo_test.go b/internal/provider/models/sources/test/demo_test.go index 7bec0371..953a3678 100644 --- a/internal/provider/models/sources/test/demo_test.go +++ b/internal/provider/models/sources/test/demo_test.go @@ -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 TestAccDemoSourceResource(t *testing.T) { diff --git a/internal/provider/models/sources/test/fluent_test.go b/internal/provider/models/sources/test/fluent_test.go index 084f38d1..8e705fb2 100644 --- a/internal/provider/models/sources/test/fluent_test.go +++ b/internal/provider/models/sources/test/fluent_test.go @@ -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 TestAccFluentSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/http_test.go b/internal/provider/models/sources/test/http_test.go index 0dc915ec..62559c57 100644 --- a/internal/provider/models/sources/test/http_test.go +++ b/internal/provider/models/sources/test/http_test.go @@ -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 TestAccHttpSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/kafka_test.go b/internal/provider/models/sources/test/kafka_test.go index de8e323d..0883ad28 100644 --- a/internal/provider/models/sources/test/kafka_test.go +++ b/internal/provider/models/sources/test/kafka_test.go @@ -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 TestAccKafkaSourceResource(t *testing.T) { diff --git a/internal/provider/models/sources/test/kinesis_firehose_test.go b/internal/provider/models/sources/test/kinesis_firehose_test.go index 89b30aa6..64367624 100644 --- a/internal/provider/models/sources/test/kinesis_firehose_test.go +++ b/internal/provider/models/sources/test/kinesis_firehose_test.go @@ -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 TestAccKinesisFirehoseSourceResource(t *testing.T) { diff --git a/internal/provider/models/sources/test/log_analysis_test.go b/internal/provider/models/sources/test/log_analysis_test.go index e4cff6c0..c572a1a6 100644 --- a/internal/provider/models/sources/test/log_analysis_test.go +++ b/internal/provider/models/sources/test/log_analysis_test.go @@ -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 TestAccLogAnalysisSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/logstash_test.go b/internal/provider/models/sources/test/logstash_test.go index 45c8676e..ed59e9ae 100644 --- a/internal/provider/models/sources/test/logstash_test.go +++ b/internal/provider/models/sources/test/logstash_test.go @@ -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 TestAccLogStashSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/open_telemetry_test.go b/internal/provider/models/sources/test/open_telemetry_test.go index eb8c8e25..5065c925 100644 --- a/internal/provider/models/sources/test/open_telemetry_test.go +++ b/internal/provider/models/sources/test/open_telemetry_test.go @@ -6,7 +6,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" ) type resourceOpenTelemetrySourceConfig struct { diff --git a/internal/provider/models/sources/test/prometheus_remote_write_test.go b/internal/provider/models/sources/test/prometheus_remote_write_test.go index aa5685ad..9fa64b35 100644 --- a/internal/provider/models/sources/test/prometheus_remote_write_test.go +++ b/internal/provider/models/sources/test/prometheus_remote_write_test.go @@ -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 TestAccPrometheusRemoteWriteSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/provider_test.go b/internal/provider/models/sources/test/provider_test.go index 168a7258..2e6c975d 100644 --- a/internal/provider/models/sources/test/provider_test.go +++ b/internal/provider/models/sources/test/provider_test.go @@ -3,7 +3,7 @@ package sources 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){ diff --git a/internal/provider/models/sources/test/s3_test.go b/internal/provider/models/sources/test/s3_test.go index 041060b6..6ae41117 100644 --- a/internal/provider/models/sources/test/s3_test.go +++ b/internal/provider/models/sources/test/s3_test.go @@ -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 TestAccS3SourceResource(t *testing.T) { diff --git a/internal/provider/models/sources/test/splunk_hec_test.go b/internal/provider/models/sources/test/splunk_hec_test.go index e9182e80..8255cd2a 100644 --- a/internal/provider/models/sources/test/splunk_hec_test.go +++ b/internal/provider/models/sources/test/splunk_hec_test.go @@ -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 TestAccSplunkHecSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/sqs_test.go b/internal/provider/models/sources/test/sqs_test.go index 514fce8b..6afec9f5 100644 --- a/internal/provider/models/sources/test/sqs_test.go +++ b/internal/provider/models/sources/test/sqs_test.go @@ -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 TestAccSQSSource(t *testing.T) { diff --git a/internal/provider/models/sources/test/webhook_test.go b/internal/provider/models/sources/test/webhook_test.go index 7b130035..48102593 100644 --- a/internal/provider/models/sources/test/webhook_test.go +++ b/internal/provider/models/sources/test/webhook_test.go @@ -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 TestAccWebhookSource(t *testing.T) { diff --git a/internal/provider/models/sources/webhook.go b/internal/provider/models/sources/webhook.go index 33201acd..5152ae82 100644 --- a/internal/provider/models/sources/webhook.go +++ b/internal/provider/models/sources/webhook.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/resource/schema" . "github.com/hashicorp/terraform-plugin-framework/types" - . "github.com/mezmo/terraform-provider-mezmo/internal/client" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const WEBHOOK_SOURCE_TYPE_NAME = "webhook" diff --git a/internal/provider/pipeline_resource.go b/internal/provider/pipeline_resource.go index c6e05267..61aacf8b 100644 --- a/internal/provider/pipeline_resource.go +++ b/internal/provider/pipeline_resource.go @@ -12,8 +12,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "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 ( diff --git a/internal/provider/pipeline_resource_test.go b/internal/provider/pipeline_resource_test.go index 92f73989..903d5689 100644 --- a/internal/provider/pipeline_resource_test.go +++ b/internal/provider/pipeline_resource_test.go @@ -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 TestPipelineResource(t *testing.T) { diff --git a/internal/provider/processor_resource.go b/internal/provider/processor_resource.go index 1bf60caf..e6521b1b 100644 --- a/internal/provider/processor_resource.go +++ b/internal/provider/processor_resource.go @@ -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/processors" + "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/processors" ) type ProcessorModel interface { diff --git a/internal/provider/processor_resource_definitions.go b/internal/provider/processor_resource_definitions.go index 5770e05a..eca12d45 100644 --- a/internal/provider/processor_resource_definitions.go +++ b/internal/provider/processor_resource_definitions.go @@ -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/processors" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/processors" ) func NewAggregateProcessorResource() resource.Resource { diff --git a/internal/provider/provider.go b/internal/provider/provider.go index d78dd183..f650d957 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -17,7 +17,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/client" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" ) const PROVIDER_TYPE_NAME = "mezmo" diff --git a/internal/provider/providertest/utils.go b/internal/provider/providertest/utils.go index 6b132c97..187e52f2 100644 --- a/internal/provider/providertest/utils.go +++ b/internal/provider/providertest/utils.go @@ -17,8 +17,8 @@ import ( "github.com/google/go-cmp/cmp" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "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 authAccountId = "tf_test_01" diff --git a/internal/provider/publish_pipeline_resource.go b/internal/provider/publish_pipeline_resource.go index aa2dabb9..51724001 100644 --- a/internal/provider/publish_pipeline_resource.go +++ b/internal/provider/publish_pipeline_resource.go @@ -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 ( diff --git a/internal/provider/publish_pipeline_resource_test.go b/internal/provider/publish_pipeline_resource_test.go index 55b8fb54..ab68f8b1 100644 --- a/internal/provider/publish_pipeline_resource_test.go +++ b/internal/provider/publish_pipeline_resource_test.go @@ -4,7 +4,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" ) // Note that this test is not able to test all the possible use cases for this resource. diff --git a/internal/provider/shared_source_resource.go b/internal/provider/shared_source_resource.go index bcb2ecc0..07310400 100644 --- a/internal/provider/shared_source_resource.go +++ b/internal/provider/shared_source_resource.go @@ -11,9 +11,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/provider/models" - . "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" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/modelutils" ) var ( diff --git a/internal/provider/shared_source_resource_test.go b/internal/provider/shared_source_resource_test.go index 2de1556d..41e209a3 100644 --- a/internal/provider/shared_source_resource_test.go +++ b/internal/provider/shared_source_resource_test.go @@ -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 TestSharedSourceResource(t *testing.T) { diff --git a/internal/provider/source_resource.go b/internal/provider/source_resource.go index 1a10ca5f..88148992 100644 --- a/internal/provider/source_resource.go +++ b/internal/provider/source_resource.go @@ -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/sources" + "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/sources" ) type SourceModel interface { diff --git a/internal/provider/source_resource_definitions.go b/internal/provider/source_resource_definitions.go index 5df40105..6e64c6c7 100644 --- a/internal/provider/source_resource_definitions.go +++ b/internal/provider/source_resource_definitions.go @@ -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/sources" + . "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider/models/sources" ) func NewDemoSourceResource() resource.Resource { diff --git a/internal/provider/types.go b/internal/provider/types.go index e36dde31..f30f2775 100644 --- a/internal/provider/types.go +++ b/internal/provider/types.go @@ -4,7 +4,7 @@ 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/v4/internal/client" ) // Generic type representing a source / processor / destination model. diff --git a/main.go b/main.go index 6b8876f2..b03d8633 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( "log" "github.com/hashicorp/terraform-plugin-framework/providerserver" - "github.com/mezmo/terraform-provider-mezmo/internal/provider" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider" ) // Note that Terraform Provider Framework expects a binary called `terraform-provider-{name-of-the-provider}` diff --git a/pkg/resources/convertible.go b/pkg/resources/convertible.go index 40d0d228..d4a1802c 100644 --- a/pkg/resources/convertible.go +++ b/pkg/resources/convertible.go @@ -6,8 +6,8 @@ import ( "reflect" "github.com/hashicorp/terraform-plugin-framework/resource/schema" - "github.com/mezmo/terraform-provider-mezmo/internal/client" - "github.com/mezmo/terraform-provider-mezmo/internal/provider" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/client" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider" ) type PipelineApiModel = client.Pipeline diff --git a/pkg/resources/convertible_test.go b/pkg/resources/convertible_test.go index f4bf1948..d83af0f0 100644 --- a/pkg/resources/convertible_test.go +++ b/pkg/resources/convertible_test.go @@ -13,7 +13,7 @@ import ( "strings" "testing" - "github.com/mezmo/terraform-provider-mezmo/internal/provider" + "github.com/mezmo/terraform-provider-mezmo/v4/internal/provider" ) var (