diff --git a/.goreleaser.yml b/.goreleaser.yml index bc6d049f..bce2504d 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -10,7 +10,7 @@ builds: flags: - -trimpath ldflags: - - "-s -w -X github.com/vercel/terraform-provider-vercel/v2/client.version={{.Version}}" + - "-s -w -X github.com/vercel/terraform-provider-vercel/v3/client.version={{.Version}}" goos: - freebsd - windows diff --git a/go.mod b/go.mod index af6d1093..db0ea692 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/vercel/terraform-provider-vercel/v2 +module github.com/vercel/terraform-provider-vercel/v3 go 1.21 diff --git a/main.go b/main.go index 39a3f410..e4befc47 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import ( "log" "github.com/hashicorp/terraform-plugin-framework/providerserver" - "github.com/vercel/terraform-provider-vercel/v2/vercel" + "github.com/vercel/terraform-provider-vercel/v3/vercel" ) func main() { diff --git a/sweep/main.go b/sweep/main.go index 9e16c249..9a391265 100644 --- a/sweep/main.go +++ b/sweep/main.go @@ -7,7 +7,7 @@ import ( "os" "strings" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func main() { diff --git a/vercel/data_source_access_group.go b/vercel/data_source_access_group.go index d1a19af2..44eb856c 100644 --- a/vercel/data_source_access_group.go +++ b/vercel/data_source_access_group.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_access_group_project.go b/vercel/data_source_access_group_project.go index 410c2421..32b8a8ce 100644 --- a/vercel/data_source_access_group_project.go +++ b/vercel/data_source_access_group_project.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_alias.go b/vercel/data_source_alias.go index 2de04095..568490a7 100644 --- a/vercel/data_source_alias.go +++ b/vercel/data_source_alias.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_attack_challenge_mode.go b/vercel/data_source_attack_challenge_mode.go index 83db1661..7ba80dfd 100644 --- a/vercel/data_source_attack_challenge_mode.go +++ b/vercel/data_source_attack_challenge_mode.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_custom_environment.go b/vercel/data_source_custom_environment.go index 25a6eed1..d25be6f0 100644 --- a/vercel/data_source_custom_environment.go +++ b/vercel/data_source_custom_environment.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_deployment.go b/vercel/data_source_deployment.go index 5834815e..5c8c3c02 100644 --- a/vercel/data_source_deployment.go +++ b/vercel/data_source_deployment.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_edge_config.go b/vercel/data_source_edge_config.go index 4f2c8961..8a4c87e6 100644 --- a/vercel/data_source_edge_config.go +++ b/vercel/data_source_edge_config.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_edge_config_item.go b/vercel/data_source_edge_config_item.go index d0313bf4..79396ec8 100644 --- a/vercel/data_source_edge_config_item.go +++ b/vercel/data_source_edge_config_item.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_edge_config_schema.go b/vercel/data_source_edge_config_schema.go index f736f848..4c758eeb 100644 --- a/vercel/data_source_edge_config_schema.go +++ b/vercel/data_source_edge_config_schema.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_edge_config_token.go b/vercel/data_source_edge_config_token.go index d7765888..9d2e6a02 100644 --- a/vercel/data_source_edge_config_token.go +++ b/vercel/data_source_edge_config_token.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_endpoint_verification.go b/vercel/data_source_endpoint_verification.go index 4b269895..6fce92ed 100644 --- a/vercel/data_source_endpoint_verification.go +++ b/vercel/data_source_endpoint_verification.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_file.go b/vercel/data_source_file.go index 6d812aad..dae47d98 100644 --- a/vercel/data_source_file.go +++ b/vercel/data_source_file.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_log_drain.go b/vercel/data_source_log_drain.go index 1af4b169..f4b24b83 100644 --- a/vercel/data_source_log_drain.go +++ b/vercel/data_source_log_drain.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/diag" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_microfrontend_group.go b/vercel/data_source_microfrontend_group.go index 15a07400..faef2a63 100644 --- a/vercel/data_source_microfrontend_group.go +++ b/vercel/data_source_microfrontend_group.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_microfrontend_group_membership.go b/vercel/data_source_microfrontend_group_membership.go index 6b2ea4b6..c6d3d531 100644 --- a/vercel/data_source_microfrontend_group_membership.go +++ b/vercel/data_source_microfrontend_group_membership.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_prebuilt_project.go b/vercel/data_source_prebuilt_project.go index 415a943a..867bad40 100644 --- a/vercel/data_source_prebuilt_project.go +++ b/vercel/data_source_prebuilt_project.go @@ -13,8 +13,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" - "github.com/vercel/terraform-provider-vercel/v2/file" + "github.com/vercel/terraform-provider-vercel/v3/client" + "github.com/vercel/terraform-provider-vercel/v3/file" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_project.go b/vercel/data_source_project.go index ada0d1d5..1963ecaf 100644 --- a/vercel/data_source_project.go +++ b/vercel/data_source_project.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_project_deployment_retention.go b/vercel/data_source_project_deployment_retention.go index 7dc55803..93f64db5 100644 --- a/vercel/data_source_project_deployment_retention.go +++ b/vercel/data_source_project_deployment_retention.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/data_source_project_directory.go b/vercel/data_source_project_directory.go index d242155f..1e8e2da3 100644 --- a/vercel/data_source_project_directory.go +++ b/vercel/data_source_project_directory.go @@ -10,8 +10,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" - "github.com/vercel/terraform-provider-vercel/v2/file" + "github.com/vercel/terraform-provider-vercel/v3/client" + "github.com/vercel/terraform-provider-vercel/v3/file" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_project_members.go b/vercel/data_source_project_members.go index 70c55efb..8c8fe04a 100644 --- a/vercel/data_source_project_members.go +++ b/vercel/data_source_project_members.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/data_source_shared_environment_variable.go b/vercel/data_source_shared_environment_variable.go index 4b6ded9b..a0ab833d 100644 --- a/vercel/data_source_shared_environment_variable.go +++ b/vercel/data_source_shared_environment_variable.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/data_source_team_config.go b/vercel/data_source_team_config.go index 80026570..8d453374 100644 --- a/vercel/data_source_team_config.go +++ b/vercel/data_source_team_config.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/data_source_team_member.go b/vercel/data_source_team_member.go index 05c8c81e..7c95d8b0 100644 --- a/vercel/data_source_team_member.go +++ b/vercel/data_source_team_member.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/provider.go b/vercel/provider.go index c2f94bbd..2def273a 100644 --- a/vercel/provider.go +++ b/vercel/provider.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) type vercelProvider struct{} diff --git a/vercel/provider_test.go b/vercel/provider_test.go index e58f1794..1d6e27b5 100644 --- a/vercel/provider_test.go +++ b/vercel/provider_test.go @@ -7,8 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/providerserver" "github.com/hashicorp/terraform-plugin-go/tfprotov6" - "github.com/vercel/terraform-provider-vercel/v2/client" - "github.com/vercel/terraform-provider-vercel/v2/vercel" + "github.com/vercel/terraform-provider-vercel/v3/client" + "github.com/vercel/terraform-provider-vercel/v3/vercel" ) var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){ diff --git a/vercel/resource_access_group.go b/vercel/resource_access_group.go index d96aa9c8..3a5b435a 100644 --- a/vercel/resource_access_group.go +++ b/vercel/resource_access_group.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_access_group_project.go b/vercel/resource_access_group_project.go index 5dfe4810..fb224c73 100644 --- a/vercel/resource_access_group_project.go +++ b/vercel/resource_access_group_project.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_access_group_project_test.go b/vercel/resource_access_group_project_test.go index 0726fbf8..b6e729e2 100644 --- a/vercel/resource_access_group_project_test.go +++ b/vercel/resource_access_group_project_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func TestAcc_AccessGroupProjectResource(t *testing.T) { diff --git a/vercel/resource_access_group_test.go b/vercel/resource_access_group_test.go index 2c18fcdb..0ba71827 100644 --- a/vercel/resource_access_group_test.go +++ b/vercel/resource_access_group_test.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func TestAcc_AccessGroupResource(t *testing.T) { diff --git a/vercel/resource_alias.go b/vercel/resource_alias.go index 6293254d..d94e2ee9 100644 --- a/vercel/resource_alias.go +++ b/vercel/resource_alias.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_alias_test.go b/vercel/resource_alias_test.go index ed07e48e..feff696f 100644 --- a/vercel/resource_alias_test.go +++ b/vercel/resource_alias_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckAliasExists(testClient *client.Client, teamID, alias string) resource.TestCheckFunc { diff --git a/vercel/resource_attack_challenge_mode.go b/vercel/resource_attack_challenge_mode.go index cda11729..dc2ee635 100644 --- a/vercel/resource_attack_challenge_mode.go +++ b/vercel/resource_attack_challenge_mode.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_custom_environment.go b/vercel/resource_custom_environment.go index 21533fee..68e5a3de 100644 --- a/vercel/resource_custom_environment.go +++ b/vercel/resource_custom_environment.go @@ -18,7 +18,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-framework/types/basetypes" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_custom_environment_test.go b/vercel/resource_custom_environment_test.go index 06cf2008..506766aa 100644 --- a/vercel/resource_custom_environment_test.go +++ b/vercel/resource_custom_environment_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckCustomEnvironmentExists(testClient *client.Client, teamID string, n string) resource.TestCheckFunc { diff --git a/vercel/resource_deployment.go b/vercel/resource_deployment.go index daa9a789..436a2c95 100644 --- a/vercel/resource_deployment.go +++ b/vercel/resource_deployment.go @@ -22,8 +22,8 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" - "github.com/vercel/terraform-provider-vercel/v2/file" + "github.com/vercel/terraform-provider-vercel/v3/client" + "github.com/vercel/terraform-provider-vercel/v3/file" ) var ( diff --git a/vercel/resource_deployment_test.go b/vercel/resource_deployment_test.go index 44faf7a0..895ce1a7 100644 --- a/vercel/resource_deployment_test.go +++ b/vercel/resource_deployment_test.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testAccDeploymentExists(testClient *client.Client, n string, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_dns_record.go b/vercel/resource_dns_record.go index a8b169f7..ad667375 100644 --- a/vercel/resource_dns_record.go +++ b/vercel/resource_dns_record.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-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_dns_record_test.go b/vercel/resource_dns_record_test.go index b9d3b40b..12d6aaa7 100644 --- a/vercel/resource_dns_record_test.go +++ b/vercel/resource_dns_record_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testAccDNSRecordDestroy(testClient *client.Client, n, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_edge_config.go b/vercel/resource_edge_config.go index 76a8adc0..bb033ed8 100644 --- a/vercel/resource_edge_config.go +++ b/vercel/resource_edge_config.go @@ -13,7 +13,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_edge_config_item.go b/vercel/resource_edge_config_item.go index 35d6adb5..262e2d13 100644 --- a/vercel/resource_edge_config_item.go +++ b/vercel/resource_edge_config_item.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_edge_config_item_test.go b/vercel/resource_edge_config_item_test.go index f2eb7ce7..4dd22f46 100644 --- a/vercel/resource_edge_config_item_test.go +++ b/vercel/resource_edge_config_item_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func getEdgeConfigItemImportID(n string) resource.ImportStateIdFunc { diff --git a/vercel/resource_edge_config_schema.go b/vercel/resource_edge_config_schema.go index 9deead00..b13cc689 100644 --- a/vercel/resource_edge_config_schema.go +++ b/vercel/resource_edge_config_schema.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_edge_config_schema_test.go b/vercel/resource_edge_config_schema_test.go index 148f00cf..175bf420 100644 --- a/vercel/resource_edge_config_schema_test.go +++ b/vercel/resource_edge_config_schema_test.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckEdgeConfigSchemaExists(testClient *client.Client, teamID, n string) resource.TestCheckFunc { diff --git a/vercel/resource_edge_config_test.go b/vercel/resource_edge_config_test.go index 39d19749..99019dd1 100644 --- a/vercel/resource_edge_config_test.go +++ b/vercel/resource_edge_config_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckEdgeConfigExists(testClient *client.Client, teamID, n string) resource.TestCheckFunc { diff --git a/vercel/resource_edge_config_token.go b/vercel/resource_edge_config_token.go index 01a56517..2a210a77 100644 --- a/vercel/resource_edge_config_token.go +++ b/vercel/resource_edge_config_token.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_edge_config_token_test.go b/vercel/resource_edge_config_token_test.go index 3fd9eb64..862913bd 100644 --- a/vercel/resource_edge_config_token_test.go +++ b/vercel/resource_edge_config_token_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckEdgeConfigTokenExists(testClient *client.Client, teamID, n string) resource.TestCheckFunc { diff --git a/vercel/resource_firewall_bypass.go b/vercel/resource_firewall_bypass.go index feeca4be..b0570a0c 100644 --- a/vercel/resource_firewall_bypass.go +++ b/vercel/resource_firewall_bypass.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_firewall_config.go b/vercel/resource_firewall_config.go index 7a3bcb4a..eb9f10c4 100644 --- a/vercel/resource_firewall_config.go +++ b/vercel/resource_firewall_config.go @@ -17,7 +17,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-framework/types/basetypes" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_integration_project_access.go b/vercel/resource_integration_project_access.go index 5d69c449..fc0bfa6c 100644 --- a/vercel/resource_integration_project_access.go +++ b/vercel/resource_integration_project_access.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_integration_project_access_test.go b/vercel/resource_integration_project_access_test.go index 7b18adac..47c0d5a5 100644 --- a/vercel/resource_integration_project_access_test.go +++ b/vercel/resource_integration_project_access_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckIntegrationProjectAccessDestroyed(testClient *client.Client, n, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_log_drain.go b/vercel/resource_log_drain.go index aa8c3739..e4167e83 100644 --- a/vercel/resource_log_drain.go +++ b/vercel/resource_log_drain.go @@ -19,7 +19,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_log_drain_test.go b/vercel/resource_log_drain_test.go index 1431bf82..751e04a6 100644 --- a/vercel/resource_log_drain_test.go +++ b/vercel/resource_log_drain_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckLogDrainExists(testClient *client.Client, teamID, n string) resource.TestCheckFunc { diff --git a/vercel/resource_microfrontend_group.go b/vercel/resource_microfrontend_group.go index e0f04ef9..ed4b2b4e 100644 --- a/vercel/resource_microfrontend_group.go +++ b/vercel/resource_microfrontend_group.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_microfrontend_group_membership.go b/vercel/resource_microfrontend_group_membership.go index aa598789..6416af44 100644 --- a/vercel/resource_microfrontend_group_membership.go +++ b/vercel/resource_microfrontend_group_membership.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_microfrontend_group_test.go b/vercel/resource_microfrontend_group_test.go index 7c8df691..9d4e3872 100644 --- a/vercel/resource_microfrontend_group_test.go +++ b/vercel/resource_microfrontend_group_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckMicrofrontendGroupExists(testClient *client.Client, teamID, n string) resource.TestCheckFunc { diff --git a/vercel/resource_project.go b/vercel/resource_project.go index f96cec14..bbd55e52 100644 --- a/vercel/resource_project.go +++ b/vercel/resource_project.go @@ -27,7 +27,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-framework/types/basetypes" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_project_deployment_retention.go b/vercel/resource_project_deployment_retention.go index fac33bfc..1767586e 100644 --- a/vercel/resource_project_deployment_retention.go +++ b/vercel/resource_project_deployment_retention.go @@ -13,7 +13,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_project_deployment_retention_test.go b/vercel/resource_project_deployment_retention_test.go index 1c786c2b..e46bc2f1 100644 --- a/vercel/resource_project_deployment_retention_test.go +++ b/vercel/resource_project_deployment_retention_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testAccProjectDeploymentRetentionExists(testClient *client.Client, n, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_project_domain.go b/vercel/resource_project_domain.go index 3594f2ce..5d24d0c7 100644 --- a/vercel/resource_project_domain.go +++ b/vercel/resource_project_domain.go @@ -14,7 +14,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_project_domain_test.go b/vercel/resource_project_domain_test.go index 1f5dc882..baab4d0f 100644 --- a/vercel/resource_project_domain_test.go +++ b/vercel/resource_project_domain_test.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func TestAcc_ProjectDomain(t *testing.T) { diff --git a/vercel/resource_project_environment_variable.go b/vercel/resource_project_environment_variable.go index cc7c9051..760f836b 100644 --- a/vercel/resource_project_environment_variable.go +++ b/vercel/resource_project_environment_variable.go @@ -18,7 +18,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_project_environment_variable_test.go b/vercel/resource_project_environment_variable_test.go index cac31fbe..5b17f5f8 100644 --- a/vercel/resource_project_environment_variable_test.go +++ b/vercel/resource_project_environment_variable_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testAccProjectEnvironmentVariableExists(testClient *client.Client, n, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_project_environment_variables.go b/vercel/resource_project_environment_variables.go index 6c850387..4ceeec02 100644 --- a/vercel/resource_project_environment_variables.go +++ b/vercel/resource_project_environment_variables.go @@ -19,7 +19,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_project_members.go b/vercel/resource_project_members.go index 46e33a3b..c8947a54 100644 --- a/vercel/resource_project_members.go +++ b/vercel/resource_project_members.go @@ -15,7 +15,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_project_test.go b/vercel/resource_project_test.go index 1fe1aaf2..d8e87657 100644 --- a/vercel/resource_project_test.go +++ b/vercel/resource_project_test.go @@ -14,7 +14,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/statecheck" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-plugin-testing/tfjsonpath" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func TestAcc_Project(t *testing.T) { diff --git a/vercel/resource_shared_environment_variable.go b/vercel/resource_shared_environment_variable.go index 973ce172..70a0f977 100644 --- a/vercel/resource_shared_environment_variable.go +++ b/vercel/resource_shared_environment_variable.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-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_shared_environment_variable_project_link.go b/vercel/resource_shared_environment_variable_project_link.go index 2bbc7998..69775e23 100644 --- a/vercel/resource_shared_environment_variable_project_link.go +++ b/vercel/resource_shared_environment_variable_project_link.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) var ( diff --git a/vercel/resource_shared_environment_variable_project_link_test.go b/vercel/resource_shared_environment_variable_project_link_test.go index 831c4d31..d34bf258 100644 --- a/vercel/resource_shared_environment_variable_project_link_test.go +++ b/vercel/resource_shared_environment_variable_project_link_test.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckSharedEnvironmentVariableProjectUnlinked(testClient *client.Client, envVarName, projectName, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_shared_environment_variable_test.go b/vercel/resource_shared_environment_variable_test.go index 73a10293..f0e34091 100644 --- a/vercel/resource_shared_environment_variable_test.go +++ b/vercel/resource_shared_environment_variable_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testAccSharedEnvironmentVariableExists(testClient *client.Client, n, teamID string) resource.TestCheckFunc { diff --git a/vercel/resource_team_config.go b/vercel/resource_team_config.go index fd653819..3e62ba1a 100644 --- a/vercel/resource_team_config.go +++ b/vercel/resource_team_config.go @@ -25,7 +25,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-framework/types/basetypes" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_team_member.go b/vercel/resource_team_member.go index bf28a143..9cc51934 100644 --- a/vercel/resource_team_member.go +++ b/vercel/resource_team_member.go @@ -19,7 +19,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_webhook.go b/vercel/resource_webhook.go index 200268e9..5bc7632e 100644 --- a/vercel/resource_webhook.go +++ b/vercel/resource_webhook.go @@ -15,7 +15,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/schema/validator" "github.com/hashicorp/terraform-plugin-framework/types" "github.com/hashicorp/terraform-plugin-log/tflog" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) // Ensure the implementation satisfies the expected interfaces. diff --git a/vercel/resource_webhook_test.go b/vercel/resource_webhook_test.go index a2e30548..2768fb7a 100644 --- a/vercel/resource_webhook_test.go +++ b/vercel/resource_webhook_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/acctest" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" - "github.com/vercel/terraform-provider-vercel/v2/client" + "github.com/vercel/terraform-provider-vercel/v3/client" ) func testCheckWebhookExists(testClient *client.Client, teamID, n string) resource.TestCheckFunc {