diff --git a/mmv1/api/resource.go b/mmv1/api/resource.go index e191a6636bcd..ee3626970987 100644 --- a/mmv1/api/resource.go +++ b/mmv1/api/resource.go @@ -2197,23 +2197,23 @@ func (r Resource) TestSampleSetUp(sysfs fs.FS) { } } -// TestServiceDependencies returns a map of service names to import aliases that are required +// TestDependencies returns a map of service names to import aliases that are required // by this resource's samples. -func (r Resource) TestServiceDependencies() map[string]string { +func (r Resource) TestDependencies() map[string]string { deps := map[string]string{} for _, s := range r.TestSamples() { - for service, alias := range s.TestServiceDependencies(r.Runtime.ResourcePrefixServiceMap) { - if depsAlias, ok := deps[service]; ok && alias != depsAlias { + for pkg, alias := range s.TestDependencies(r.Runtime.ResourcePrefixPkgMap) { + if depsAlias, ok := deps[pkg]; ok && alias != depsAlias { if (alias == "_" && depsAlias == "") || (alias == "" && depsAlias == "_") { - deps[service] = "" + deps[pkg] = "" continue } - log.Fatalf("Conflicting aliases (%s vs %s) for service dependency %s for resource %s", depsAlias, alias, service, r.ApiName) + log.Fatalf("Conflicting aliases (%s vs %s) for pkg dependency %s for resource %s", depsAlias, alias, pkg, r.ApiName) } - deps[service] = alias + deps[pkg] = alias } } - delete(deps, strings.ToLower(r.ProductMetadata.Name)) + delete(deps, "services/"+strings.ToLower(r.ProductMetadata.Name)) return deps } diff --git a/mmv1/api/resource/sample.go b/mmv1/api/resource/sample.go index 0edb29c8ca95..5579aeb7e821 100644 --- a/mmv1/api/resource/sample.go +++ b/mmv1/api/resource/sample.go @@ -110,23 +110,23 @@ func (s *Sample) TestSteps() []*Step { }) } -// TestServiceDependencies returns a map of service names to import aliases that are required +// TestDependencies returns a map of service names to import aliases that are required // by this sample's steps. -func (s *Sample) TestServiceDependencies(resourcePrefixServiceMap map[string]string) map[string]string { +func (s *Sample) TestDependencies(resourcePrefixPkgMap map[string]string) map[string]string { deps := map[string]string{} if len(s.BootstrapIam) > 0 { - deps["resourcemanager"] = "" + deps["services/resourcemanager"] = "" } for _, step := range s.TestSteps() { - for service, alias := range step.TestServiceDependencies(resourcePrefixServiceMap) { - if depsAlias, ok := deps[service]; ok && alias != depsAlias { + for pkg, alias := range step.TestDependencies(resourcePrefixPkgMap) { + if depsAlias, ok := deps[pkg]; ok && alias != depsAlias { if (alias == "_" && depsAlias == "") || (alias == "" && depsAlias == "_") { - deps[service] = "" + deps[pkg] = "" continue } - log.Fatalf("Conflicting aliases (%s vs %s) for service dependency %s for sample %s", depsAlias, alias, service, s.Name) + log.Fatalf("Conflicting aliases (%s vs %s) for pkg dependency %s for sample %s", depsAlias, alias, pkg, s.Name) } - deps[service] = alias + deps[pkg] = alias } } return deps diff --git a/mmv1/api/resource/sample_test.go b/mmv1/api/resource/sample_test.go index 8efcaf2f9d2d..87cfcda2ab1c 100644 --- a/mmv1/api/resource/sample_test.go +++ b/mmv1/api/resource/sample_test.go @@ -8,7 +8,7 @@ import ( "github.com/GoogleCloudPlatform/magic-modules/mmv1/api/resource" ) -func TestSample_TestServiceDependencies(t *testing.T) { +func TestSample_TestDependencies(t *testing.T) { cases := []struct { name string sample resource.Sample @@ -40,7 +40,7 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, resourcePrefixServiceMap: map[string]string{}, want: map[string]string{ - "resourcemanager": "", + "services/resourcemanager": "", }, }, { @@ -63,7 +63,7 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, resourcePrefixServiceMap: map[string]string{}, want: map[string]string{ - "compute": "", + "services/compute": "", }, }, { @@ -83,10 +83,10 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, }, resourcePrefixServiceMap: map[string]string{ - "google_compute_": "compute", + "google_compute_": "services/compute", }, want: map[string]string{ - "compute": "", + "services/compute": "", }, }, { @@ -106,19 +106,19 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, }, resourcePrefixServiceMap: map[string]string{ - "google_project": "resourcemanager", + "google_project": "services/resourcemanager", }, want: map[string]string{ - "resourcemanager": "", + "services/resourcemanager": "", }, }, } for _, tc := range cases { t.Run(tc.name, func(t *testing.T) { t.Parallel() - got := tc.sample.TestServiceDependencies(tc.resourcePrefixServiceMap) + got := tc.sample.TestDependencies(tc.resourcePrefixServiceMap) if diff := cmp.Diff(tc.want, got); diff != "" { - t.Errorf("TestServiceDependencies() mismatch (-want +got:\n%s", diff) + t.Errorf("TestDependencies() mismatch (-want +got:\n%s", diff) } }) } diff --git a/mmv1/api/resource/step.go b/mmv1/api/resource/step.go index cd1fb575eaca..a8f89b0d5602 100644 --- a/mmv1/api/resource/step.go +++ b/mmv1/api/resource/step.go @@ -29,7 +29,7 @@ import ( "github.com/golang/glog" ) -var hclResourceRegexp = regexp.MustCompile(`resource "(?Pgoogle_[^"]+)"`) +var hclResourceRegexp = regexp.MustCompile(`(?:resource|data|list|ephemeral) "(?Pgoogle_[^"]+)"`) type Step struct { Name string `yaml:"name,omitempty"` @@ -124,19 +124,19 @@ func (s *Step) TestStepSlug(productName, resourceName string) string { return ret } -// TestServiceDependencies returns a map of service names to import aliases that are required +// TestDependencies returns a map of service names to import aliases that are required // by this step. -func (s *Step) TestServiceDependencies(resourcePrefixServiceMap map[string]string) map[string]string { +func (s *Step) TestDependencies(resourcePrefixPkgMap map[string]string) map[string]string { deps := map[string]string{} for _, val := range s.TestContextVars { if strings.HasPrefix(val, "compute.") { - deps["compute"] = "" + deps["services/compute"] = "" } if strings.HasPrefix(val, "kms.") { - deps["kms"] = "" + deps["services/kms"] = "" } if strings.HasPrefix(val, "servicenetworking.") { - deps["servicenetworking"] = "" + deps["services/servicenetworking"] = "" } } matches := hclResourceRegexp.FindAllStringSubmatch(s.TestHCLText, -1) @@ -147,15 +147,15 @@ func (s *Step) TestServiceDependencies(resourcePrefixServiceMap map[string]strin for r, _ := range resources { longestPrefix := "" - for prefix, _ := range resourcePrefixServiceMap { + for prefix, _ := range resourcePrefixPkgMap { if strings.HasPrefix(r, prefix) && len(prefix) > len(longestPrefix) { longestPrefix = prefix } } if longestPrefix != "" { - service := resourcePrefixServiceMap[longestPrefix] - if _, ok := deps[service]; !ok { - deps[service] = "_" + pkg := resourcePrefixPkgMap[longestPrefix] + if _, ok := deps[pkg]; !ok { + deps[pkg] = "_" } } } diff --git a/mmv1/api/resource/step_test.go b/mmv1/api/resource/step_test.go index 10ee96acfff2..2bb538c38fae 100644 --- a/mmv1/api/resource/step_test.go +++ b/mmv1/api/resource/step_test.go @@ -8,7 +8,7 @@ import ( "github.com/GoogleCloudPlatform/magic-modules/mmv1/api/resource" ) -func TestStep_TestServiceDependencies(t *testing.T) { +func TestStep_TestDependencies(t *testing.T) { cases := []struct { name string step resource.Step @@ -34,7 +34,7 @@ func TestStep_TestServiceDependencies(t *testing.T) { }, resourcePrefixServiceMap: map[string]string{}, want: map[string]string{ - "compute": "", + "services/compute": "", }, }, { @@ -47,7 +47,7 @@ func TestStep_TestServiceDependencies(t *testing.T) { }, resourcePrefixServiceMap: map[string]string{}, want: map[string]string{ - "kms": "", + "services/kms": "", }, }, { @@ -60,7 +60,7 @@ func TestStep_TestServiceDependencies(t *testing.T) { }, resourcePrefixServiceMap: map[string]string{}, want: map[string]string{ - "servicenetworking": "", + "services/servicenetworking": "", }, }, { @@ -83,8 +83,8 @@ resource "google_kms_crypto_key" "foobar" { TestHCLText: "", }, resourcePrefixServiceMap: map[string]string{ - "google_compute_": "compute", - "google_kms_": "kms", + "google_compute_": "services/compute", + "google_kms_": "services/kms", }, want: map[string]string{}, }, @@ -99,12 +99,12 @@ resource "google_kms_crypto_key" "foobar" { }`, }, resourcePrefixServiceMap: map[string]string{ - "google_compute_": "compute", - "google_kms_": "kms", + "google_compute_": "services/compute", + "google_kms_": "services/kms", }, want: map[string]string{ - "compute": "_", - "kms": "_", + "services/compute": "_", + "services/kms": "_", }, }, { @@ -121,21 +121,21 @@ resource "google_kms_crypto_key" "foobar" { }`, }, resourcePrefixServiceMap: map[string]string{ - "google_compute_": "compute", - "google_kms_": "kms", + "google_compute_": "services/compute", + "google_kms_": "services/kms", }, want: map[string]string{ - "compute": "", - "kms": "", + "services/compute": "", + "services/kms": "", }, }, } for _, tc := range cases { t.Run(tc.name, func(t *testing.T) { t.Parallel() - got := tc.step.TestServiceDependencies(tc.resourcePrefixServiceMap) + got := tc.step.TestDependencies(tc.resourcePrefixServiceMap) if diff := cmp.Diff(tc.want, got); diff != "" { - t.Errorf("TestServiceDependencies() mismatch (-want +got:\n%s", diff) + t.Errorf("TestDependencies() mismatch (-want +got:\n%s", diff) } }) } diff --git a/mmv1/api/resource_test.go b/mmv1/api/resource_test.go index f3b35c4913aa..ec7e3eca9ee0 100644 --- a/mmv1/api/resource_test.go +++ b/mmv1/api/resource_test.go @@ -757,7 +757,7 @@ func TestResourceAddExtraFields(t *testing.T) { }) } -func TestSample_TestServiceDependencies(t *testing.T) { +func TestResource_TestDependencies(t *testing.T) { cases := []struct { name string resource api.Resource @@ -778,7 +778,7 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, }, Runtime: api.Runtime{ - ResourcePrefixServiceMap: map[string]string{}, + ResourcePrefixPkgMap: map[string]string{}, }, }, want: map[string]string{}, @@ -810,11 +810,11 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, }, Runtime: api.Runtime{ - ResourcePrefixServiceMap: map[string]string{}, + ResourcePrefixPkgMap: map[string]string{}, }, }, want: map[string]string{ - "compute": "", + "services/compute": "", }, }, { @@ -842,13 +842,13 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, }, Runtime: api.Runtime{ - ResourcePrefixServiceMap: map[string]string{ - "google_compute_": "compute", + ResourcePrefixPkgMap: map[string]string{ + "google_compute_": "services/compute", }, }, }, want: map[string]string{ - "compute": "", + "services/compute": "", }, }, { @@ -868,7 +868,7 @@ func TestSample_TestServiceDependencies(t *testing.T) { }, }, Runtime: api.Runtime{ - ResourcePrefixServiceMap: map[string]string{}, + ResourcePrefixPkgMap: map[string]string{}, }, }, want: map[string]string{}, @@ -877,9 +877,9 @@ func TestSample_TestServiceDependencies(t *testing.T) { for _, tc := range cases { t.Run(tc.name, func(t *testing.T) { t.Parallel() - got := tc.resource.TestServiceDependencies() + got := tc.resource.TestDependencies() if diff := cmp.Diff(tc.want, got); diff != "" { - t.Errorf("TestServiceDependencies() mismatch (-want +got:\n%s", diff) + t.Errorf("TestDependencies() mismatch (-want +got:\n%s", diff) } }) } diff --git a/mmv1/api/runtime.go b/mmv1/api/runtime.go index c9a05e25fb04..15e057a29aa0 100644 --- a/mmv1/api/runtime.go +++ b/mmv1/api/runtime.go @@ -15,7 +15,7 @@ package api // Runtime holds metadata about the current generation runtime. type Runtime struct { - // ResourcePrefixServiceMap contains entries mapping product resource prefixes (like google_compute_) to + // ResourcePrefixPkgMap contains entries mapping product resource prefixes (like google_compute_) to // the service package that the resource is in. - ResourcePrefixServiceMap map[string]string + ResourcePrefixPkgMap map[string]string } diff --git a/mmv1/loader/loader.go b/mmv1/loader/loader.go index df810f451a56..55bb7889f504 100644 --- a/mmv1/loader/loader.go +++ b/mmv1/loader/loader.go @@ -103,29 +103,29 @@ func (l *Loader) LoadProducts() { l.Products = l.batchLoadProducts(allProductFiles) - // Set up ResourcePrefixServiceMap now that all products are loaded. + // Set up ResourcePrefixPkgMap now that all products are loaded. runtime := api.Runtime{ // Hardcode a few unusually-named handwritten resources. These are among the oldest resources // in the provider; we shouldn't be adding more to this list. - ResourcePrefixServiceMap: map[string]string{ - "google_project": "resourcemanager", - "google_folder": "resourcemanager", - "google_organization": "resourcemanager", - "google_service_account": "resourcemanager", + ResourcePrefixPkgMap: map[string]string{ + "google_project": "services/resourcemanager", + "google_folder": "services/resourcemanager", + "google_organization": "services/resourcemanager", + "google_service_account": "services/resourcemanager", }, } prefixCount := map[string]int{} for _, p := range l.Products { prefix := fmt.Sprintf("google_%s_", p.TerraformName()) - runtime.ResourcePrefixServiceMap[prefix] = strings.ToLower(p.ApiName) + runtime.ResourcePrefixPkgMap[prefix] = "services/" + strings.ToLower(p.ApiName) prefixCount[prefix] += 1 if prefixCount[prefix] > 1 { - delete(runtime.ResourcePrefixServiceMap, prefix) + delete(runtime.ResourcePrefixPkgMap, prefix) } // Always add resources with legacy_name for _, r := range p.Objects { if r.LegacyName != "" && !strings.HasPrefix(r.LegacyName, prefix) { - runtime.ResourcePrefixServiceMap[r.LegacyName] = strings.ToLower(p.ApiName) + runtime.ResourcePrefixPkgMap[r.LegacyName] = "services/" + strings.ToLower(p.ApiName) } } } @@ -134,7 +134,7 @@ func (l *Loader) LoadProducts() { prefix := fmt.Sprintf("google_%s_", p.TerraformName()) if prefixCount[prefix] > 1 { for _, r := range p.Objects { - runtime.ResourcePrefixServiceMap[r.TerraformName()] = strings.ToLower(p.ApiName) + runtime.ResourcePrefixPkgMap[r.TerraformName()] = "services/" + strings.ToLower(p.ApiName) } } } diff --git a/mmv1/templates/terraform/samples/base_configs/iam_test_file.go.tmpl b/mmv1/templates/terraform/samples/base_configs/iam_test_file.go.tmpl index 2ae5204223e5..cf162ce8c5dd 100644 --- a/mmv1/templates/terraform/samples/base_configs/iam_test_file.go.tmpl +++ b/mmv1/templates/terraform/samples/base_configs/iam_test_file.go.tmpl @@ -19,8 +19,8 @@ import ( "{{ $.ImportPath }}/acctest" "{{ $.ImportPath }}/envvar" "{{ $.ImportPath }}/tpgresource" -{{- range $service, $alias := ($.FirstTestConfig.Step.TestServiceDependencies $.Runtime.ResourcePrefixServiceMap) }} - {{ $alias }} "{{ $.ImportPath }}/services/{{ $service }}" +{{- range $pkg, $alias := ($.FirstTestConfig.Step.TestDependencies $.Runtime.ResourcePrefixPkgMap) }} + {{ $alias }} "{{ $.ImportPath }}/{{ $pkg }}" {{- end }} ) diff --git a/mmv1/templates/terraform/samples/base_configs/test_file.go.tmpl b/mmv1/templates/terraform/samples/base_configs/test_file.go.tmpl index 92a88ef8b9dc..86a7d2524c6b 100644 --- a/mmv1/templates/terraform/samples/base_configs/test_file.go.tmpl +++ b/mmv1/templates/terraform/samples/base_configs/test_file.go.tmpl @@ -42,8 +42,8 @@ import ( "{{ $.ImportPath }}/acctest" "{{ $.ImportPath }}/envvar" "{{ $.ImportPath }}/services/{{ lower $.Res.ProductMetadata.Name }}" -{{- range $service, $alias := $.Res.TestServiceDependencies }} - {{ $alias }} "{{ $.ImportPath }}/services/{{ $service }}" +{{- range $pkg, $alias := $.Res.TestDependencies }} + {{ $alias }} "{{ $.ImportPath }}/{{ $pkg }}" {{- end }} "{{ $.ImportPath }}/tpgresource" transport_tpg "{{ $.ImportPath }}/transport" diff --git a/mmv1/third_party/terraform/fwprovider/framework_provider_billing_project_test.go.tmpl b/mmv1/third_party/terraform/fwprovider/framework_provider_billing_project_test.go.tmpl index b8956b0b5d57..da1e0bf6ab65 100644 --- a/mmv1/third_party/terraform/fwprovider/framework_provider_billing_project_test.go.tmpl +++ b/mmv1/third_party/terraform/fwprovider/framework_provider_billing_project_test.go.tmpl @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" {{- if ne $.TargetVersionName "ga" }} + _ "github.com/hashicorp/terraform-provider-google/google/services/firebase" "github.com/hashicorp/terraform-provider-google/google/envvar" {{- end }} ) diff --git a/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_folder_service_account_test.go b/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_folder_service_account_test.go index 35b60f89e819..f2072b00a736 100644 --- a/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_folder_service_account_test.go +++ b/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_folder_service_account_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/accessapproval" _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) diff --git a/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_organization_service_account_test.go b/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_organization_service_account_test.go index c53984349960..fcb0bbfe1cc3 100644 --- a/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_organization_service_account_test.go +++ b/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_organization_service_account_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/accessapproval" ) func TestAccDataSourceAccessApprovalOrganizationServiceAccount_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_project_service_account_test.go b/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_project_service_account_test.go index c7261f5e75e9..dae504420353 100644 --- a/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_project_service_account_test.go +++ b/mmv1/third_party/terraform/services/accessapproval/data_source_access_approval_project_service_account_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/accessapproval" ) func TestAccDataSourceAccessApprovalProjectServiceAccount_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_service_test.go b/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_service_test.go index 83c95fb62091..1080fe8a6a00 100644 --- a/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_service_test.go +++ b/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_service_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/accesscontextmanager" ) func TestAccDataSourceAccessContextManagerSupportedService_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_services_test.go b/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_services_test.go index 87f294e58ecd..8ee2a766f80d 100644 --- a/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_services_test.go +++ b/mmv1/third_party/terraform/services/accesscontextmanager/data_source_access_context_manager_supported_services_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/accesscontextmanager" ) func TestAccDataSourceAccessContextManagerSupportedServices_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/accesscontextmanager/resource_access_context_manager_access_policy_test.go.tmpl b/mmv1/third_party/terraform/services/accesscontextmanager/resource_access_context_manager_access_policy_test.go.tmpl index 35d95e2c730d..e822f5baf283 100644 --- a/mmv1/third_party/terraform/services/accesscontextmanager/resource_access_context_manager_access_policy_test.go.tmpl +++ b/mmv1/third_party/terraform/services/accesscontextmanager/resource_access_context_manager_access_policy_test.go.tmpl @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/accesscontextmanager" "github.com/hashicorp/terraform-provider-google/google/tpgresource" diff --git a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_cluster_test.go b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_cluster_test.go index a4f49be54544..e7300acef0f4 100644 --- a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_cluster_test.go +++ b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_cluster_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_database_instance_test.go b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_database_instance_test.go index c329aa6c4419..7ca66db17940 100644 --- a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_database_instance_test.go +++ b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_database_instance_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_locations_test.go b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_locations_test.go index b1c25556008d..4bb0d368f89a 100644 --- a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_locations_test.go +++ b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_locations_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" ) func TestAccDataSourceAlloydbLocations_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_supported_database_flags_test.go b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_supported_database_flags_test.go index 188351332c04..74cfad250454 100644 --- a/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_supported_database_flags_test.go +++ b/mmv1/third_party/terraform/services/alloydb/data_source_alloydb_supported_database_flags_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" ) func TestAccDataSourceAlloydbSupportedDatabaseFlags_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_backup_test.go b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_backup_test.go index 079e7170b21a..11e37e908627 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_backup_test.go +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_backup_test.go @@ -6,7 +6,9 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_restore_test.go b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_restore_test.go index 5142150e946d..b770b318f06a 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_restore_test.go +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_restore_test.go @@ -9,6 +9,8 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" "github.com/hashicorp/terraform-provider-google/google/services/backupdr" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_test.go b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_test.go index ad16ab4bd5c3..63be9fc389db 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_test.go +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_cluster_test.go @@ -9,6 +9,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_instance_test.go.tmpl b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_instance_test.go.tmpl index 449b57a94b7c..ce9a0a9a2399 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_instance_test.go.tmpl +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_instance_test.go.tmpl @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" tpgcompute "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_cluster_test.go b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_cluster_test.go index 6a5f4a115494..763bad67a7d6 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_cluster_test.go +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_cluster_test.go @@ -9,6 +9,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" tpgcompute "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_instance_test.go b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_instance_test.go index 094e2dde4f4a..fb684c279f5d 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_instance_test.go +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_secondary_instance_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" tpgcompute "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_user_test.go b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_user_test.go index d7198ba92672..4ca4a441edea 100644 --- a/mmv1/third_party/terraform/services/alloydb/resource_alloydb_user_test.go +++ b/mmv1/third_party/terraform/services/alloydb/resource_alloydb_user_test.go @@ -6,6 +6,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/alloydb" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/appengine/data_source_google_app_engine_default_service_account_test.go b/mmv1/third_party/terraform/services/appengine/data_source_google_app_engine_default_service_account_test.go index 3bb894a95151..018f658a72b2 100644 --- a/mmv1/third_party/terraform/services/appengine/data_source_google_app_engine_default_service_account_test.go +++ b/mmv1/third_party/terraform/services/appengine/data_source_google_app_engine_default_service_account_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/appengine" ) func TestAccDataSourceGoogleAppEngineDefaultServiceAccount_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_image_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_image_test.go index 9d11c3ed5e36..2d5d0d021df1 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_image_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_image_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryDockerImage(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_images_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_images_test.go index 1a110653faa5..3e87ce3b05a7 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_images_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_docker_images_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryDockerImages_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_locations_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_locations_test.go index 832c6b1d96e6..3c6d1db3ba6a 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_locations_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_locations_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceGoogleArtifactRegistryLocations_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifact_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifact_test.go index cf76fb7e82d2..03b54b05d602 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifact_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifact_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryMavenArtifact_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifacts_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifacts_test.go index ad3b507bfaaf..29d138511346 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifacts_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_maven_artifacts_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryMavenArtifacts_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_package_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_package_test.go index ae9b112b192e..0e57bdd90b12 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_package_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_package_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryNpmPackage_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_packages_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_packages_test.go index 9db3c3de2d32..26ede6473766 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_packages_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_npm_packages_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryNpmPackages_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_package_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_package_test.go index 78d713183500..f874d80336ec 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_package_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_package_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryPackage_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_packages_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_packages_test.go index cc59475717b4..90c0e22b3098 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_packages_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_packages_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryPackages_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_package_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_package_test.go index 1d8b08c04cfb..e3102bb44af5 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_package_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_package_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryPythonPackage_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_packages_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_packages_test.go index f714ec414c64..77dbd1184ee2 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_packages_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_python_packages_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryPythonPackages_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tag_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tag_test.go index b29fb4183b45..280dacdf09c8 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tag_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tag_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryTag_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tags_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tags_test.go index ecd0fe7ed322..7e23a1c20997 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tags_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_tags_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryTags_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_version_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_version_test.go index fab8ed95a440..83dda0bcf8ba 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_version_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_version_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryVersion_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_versions_test.go b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_versions_test.go index 7a6ccebcc117..c189cea9ec7f 100644 --- a/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_versions_test.go +++ b/mmv1/third_party/terraform/services/artifactregistry/data_source_artifact_registry_versions_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" ) func TestAccDataSourceArtifactRegistryVersions_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_backup_test.go.tmpl b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_backup_test.go.tmpl index 31c342218778..fb5cd5c4b696 100644 --- a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_backup_test.go.tmpl +++ b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_backup_test.go.tmpl @@ -6,6 +6,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" + _ "github.com/hashicorp/terraform-provider-google/google/services/backupdr" "github.com/hashicorp/terraform-provider-google/google/envvar" ) diff --git a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_data_source_test.go.tmpl b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_data_source_test.go.tmpl index d77ecc794d38..36163e51d676 100644 --- a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_data_source_test.go.tmpl +++ b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_data_source_test.go.tmpl @@ -6,6 +6,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" + _ "github.com/hashicorp/terraform-provider-google/google/services/backupdr" "github.com/hashicorp/terraform-provider-google/google/envvar" ) diff --git a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go index c8365823c6ae..faa5f09cb13d 100644 --- a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go +++ b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/services/backupdr" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" diff --git a/mmv1/third_party/terraform/services/beyondcorp/resource_beyondcorp_security_gateway_application_test.go b/mmv1/third_party/terraform/services/beyondcorp/resource_beyondcorp_security_gateway_application_test.go index 77bbb07c2f1a..7a554f0260c3 100644 --- a/mmv1/third_party/terraform/services/beyondcorp/resource_beyondcorp_security_gateway_application_test.go +++ b/mmv1/third_party/terraform/services/beyondcorp/resource_beyondcorp_security_gateway_application_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/beyondcorp" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccBeyondcorpSecurityGatewayApplication_beyondcorpSecurityGatewayApplicationBasicExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/bigquery/resource_bigquery_dataset_test.go b/mmv1/third_party/terraform/services/bigquery/resource_bigquery_dataset_test.go index 30e93766fcd1..dad013c97151 100644 --- a/mmv1/third_party/terraform/services/bigquery/resource_bigquery_dataset_test.go +++ b/mmv1/third_party/terraform/services/bigquery/resource_bigquery_dataset_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" bigquery_tpg "github.com/hashicorp/terraform-provider-google/google/services/bigquery" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/tags" "google.golang.org/api/bigquery/v2" "regexp" diff --git a/mmv1/third_party/terraform/services/ces/ces_app_test.go b/mmv1/third_party/terraform/services/ces/ces_app_test.go index 6ab024692dbc..6748b78be2b0 100644 --- a/mmv1/third_party/terraform/services/ces/ces_app_test.go +++ b/mmv1/third_party/terraform/services/ces/ces_app_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/plancheck" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/ces" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" ) diff --git a/mmv1/third_party/terraform/services/ces/ces_security_settings_test.go b/mmv1/third_party/terraform/services/ces/ces_security_settings_test.go index 0c13dc2dfe34..0fc387888242 100644 --- a/mmv1/third_party/terraform/services/ces/ces_security_settings_test.go +++ b/mmv1/third_party/terraform/services/ces/ces_security_settings_test.go @@ -7,6 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/plancheck" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/ces" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccCESSecuritySettings_cesSecuritySettingsExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/cloudbuild/resource_cloudbuild_trigger_test.go b/mmv1/third_party/terraform/services/cloudbuild/resource_cloudbuild_trigger_test.go index 4da7a23dafa7..7dc38f44c7c3 100644 --- a/mmv1/third_party/terraform/services/cloudbuild/resource_cloudbuild_trigger_test.go +++ b/mmv1/third_party/terraform/services/cloudbuild/resource_cloudbuild_trigger_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/cloudbuild" _ "github.com/hashicorp/terraform-provider-google/google/services/pubsub" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" "github.com/hashicorp/terraform-plugin-testing/helper/resource" diff --git a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_group_memberships_test.go b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_group_memberships_test.go index d1ec36bf0f44..6ec3c8e8f134 100644 --- a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_group_memberships_test.go +++ b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_group_memberships_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudidentity" ) func testAccDataSourceCloudIdentityGroupMemberships_basicTest(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_groups_test.go b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_groups_test.go index edff6b910d86..2559a922f382 100644 --- a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_groups_test.go +++ b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_groups_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudidentity" ) func testAccDataSourceCloudIdentityGroups_basicTest(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policies_test.go b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policies_test.go index 545ed1c044d9..e33b0d33bb86 100644 --- a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policies_test.go +++ b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policies_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudidentity" "google.golang.org/api/cloudidentity/v1" ) diff --git a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policy_test.go b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policy_test.go index 1c516c120bc0..3dbd79e53d25 100644 --- a/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policy_test.go +++ b/mmv1/third_party/terraform/services/cloudidentity/data_source_cloud_identity_policy_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudidentity" "google.golang.org/api/cloudidentity/v1" ) diff --git a/mmv1/third_party/terraform/services/cloudids/resource_cloudids_endpoint_test.go b/mmv1/third_party/terraform/services/cloudids/resource_cloudids_endpoint_test.go index bab23ada20e9..81709ff9417c 100644 --- a/mmv1/third_party/terraform/services/cloudids/resource_cloudids_endpoint_test.go +++ b/mmv1/third_party/terraform/services/cloudids/resource_cloudids_endpoint_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/services/cloudids" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" "github.com/hashicorp/terraform-plugin-testing/helper/resource" diff --git a/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_info_test.go b/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_info_test.go index b8f04ae78e9e..f0fa6755e4af 100644 --- a/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_info_test.go +++ b/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_info_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudquotas" ) func TestAccDataSourceGoogleQuotaInfo_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_infos_test.go b/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_infos_test.go index 837a184d6e5a..3a813e3f1d5e 100644 --- a/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_infos_test.go +++ b/mmv1/third_party/terraform/services/cloudquotas/data_source_google_cloud_quotas_quota_infos_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudquotas" ) func TestAccDataSourceGoogleQuotaInfos_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/cloudquotas/resource_cloud_quotas_quota_adjuster_settings_test.go.tmpl b/mmv1/third_party/terraform/services/cloudquotas/resource_cloud_quotas_quota_adjuster_settings_test.go.tmpl index a0c75b7b208f..b844ac8512a7 100644 --- a/mmv1/third_party/terraform/services/cloudquotas/resource_cloud_quotas_quota_adjuster_settings_test.go.tmpl +++ b/mmv1/third_party/terraform/services/cloudquotas/resource_cloud_quotas_quota_adjuster_settings_test.go.tmpl @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/cloudquotas" "github.com/hashicorp/terraform-provider-google/google/envvar" ) diff --git a/mmv1/third_party/terraform/services/cloudrun/data_source_cloud_run_locations_test.go b/mmv1/third_party/terraform/services/cloudrun/data_source_cloud_run_locations_test.go index 550684d7c781..617212d5b9a4 100644 --- a/mmv1/third_party/terraform/services/cloudrun/data_source_cloud_run_locations_test.go +++ b/mmv1/third_party/terraform/services/cloudrun/data_source_cloud_run_locations_test.go @@ -7,6 +7,7 @@ import ( "testing" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/cloudrun" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" diff --git a/mmv1/third_party/terraform/services/cloudrun/resource_cloud_run_service_test.go.tmpl b/mmv1/third_party/terraform/services/cloudrun/resource_cloud_run_service_test.go.tmpl index 8dd3335d4fa6..2dddbcc2662b 100644 --- a/mmv1/third_party/terraform/services/cloudrun/resource_cloud_run_service_test.go.tmpl +++ b/mmv1/third_party/terraform/services/cloudrun/resource_cloud_run_service_test.go.tmpl @@ -4,6 +4,7 @@ import ( "fmt" "testing" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/cloudrun" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" "github.com/hashicorp/terraform-provider-google/google/envvar" diff --git a/mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_service_zip_deploy_test.go.tmpl b/mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_service_zip_deploy_test.go.tmpl index 87b9a3a55e4a..fad3fa5e5f2f 100644 --- a/mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_service_zip_deploy_test.go.tmpl +++ b/mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_service_zip_deploy_test.go.tmpl @@ -14,6 +14,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" _ "github.com/hashicorp/terraform-provider-google/google/services/cloudrunv2" "github.com/hashicorp/terraform-provider-google/google/envvar" diff --git a/mmv1/third_party/terraform/services/composer/data_source_google_composer_image_versions_test.go b/mmv1/third_party/terraform/services/composer/data_source_google_composer_image_versions_test.go index 7531f511b8ed..66233e9df59c 100644 --- a/mmv1/third_party/terraform/services/composer/data_source_google_composer_image_versions_test.go +++ b/mmv1/third_party/terraform/services/composer/data_source_google_composer_image_versions_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/composer" ) func TestAccDataSourceComposerImageVersions_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_compute_lb_ip_ranges_test.go b/mmv1/third_party/terraform/services/compute/data_source_compute_lb_ip_ranges_test.go index 8faaa1aeeee4..19bfdd233225 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_compute_lb_ip_ranges_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_compute_lb_ip_ranges_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccDataSourceComputeLbIpRanges_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_default_service_account_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_default_service_account_test.go index ed083a1f1dfc..a5c6764d51bf 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_default_service_account_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_default_service_account_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccDataSourceGoogleComputeDefaultServiceAccount_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_interconnect_locations_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_interconnect_locations_test.go index 5833738b1a3f..2cb1ff6fa7ca 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_interconnect_locations_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_interconnect_locations_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccDataSourceGoogleComputeInterconnectLocations_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_machine_types_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_machine_types_test.go index 0abf5e3ff000..e02fcdb4b56a 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_machine_types_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_machine_types_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccDataSourceGoogleComputeMachineTypes_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_node_types_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_node_types_test.go index 18625de6edc9..59870a770568 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_node_types_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_node_types_test.go @@ -11,6 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccDataSourceComputeNodeTypes_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_regions_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_regions_test.go index b56d1961e56b..e886b5169850 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_regions_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_regions_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccComputeRegions_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_service_attachment_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_service_attachment_test.go index 02407f4f26f5..c14483db4ba1 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_service_attachment_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_service_attachment_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccDataSourceGoogleComputeServiceAttachment_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_storage_pool_types_test.go.tmpl b/mmv1/third_party/terraform/services/compute/data_source_google_compute_storage_pool_types_test.go.tmpl index d9cc94a8c9cf..72a0bf694b48 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_storage_pool_types_test.go.tmpl +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_storage_pool_types_test.go.tmpl @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/envvar" ) diff --git a/mmv1/third_party/terraform/services/compute/data_source_google_compute_zones_test.go b/mmv1/third_party/terraform/services/compute/data_source_google_compute_zones_test.go index e9b1f7f2ceed..5400dae9fd0b 100644 --- a/mmv1/third_party/terraform/services/compute/data_source_google_compute_zones_test.go +++ b/mmv1/third_party/terraform/services/compute/data_source_google_compute_zones_test.go @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) func TestAccComputeZones_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/iam_compute_storage_pool_test.go b/mmv1/third_party/terraform/services/compute/iam_compute_storage_pool_test.go index 877f4647bc49..95db0689ccb9 100644 --- a/mmv1/third_party/terraform/services/compute/iam_compute_storage_pool_test.go +++ b/mmv1/third_party/terraform/services/compute/iam_compute_storage_pool_test.go @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/tpgresource" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_cross_site_network_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_cross_site_network_test.go index 461a74493917..8ad54c19238e 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_cross_site_network_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_cross_site_network_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccComputeCrossSiteNetwork_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_firewall_policy_with_rules_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_firewall_policy_with_rules_test.go index 05211d5d8b35..ec68771195b0 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_firewall_policy_with_rules_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_firewall_policy_with_rules_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/tags" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_application_awareness_test.go.tmpl b/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_application_awareness_test.go.tmpl index 2c0d2e279410..9566c9887f4d 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_application_awareness_test.go.tmpl +++ b/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_application_awareness_test.go.tmpl @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_attachment_l2_enabled_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_attachment_l2_enabled_test.go index 42b744c3e151..b435a3ef4c0e 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_attachment_l2_enabled_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_attachment_l2_enabled_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/tags" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_macsec_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_macsec_test.go index 6ba973739287..76455b9f703e 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_macsec_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_interconnect_macsec_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/tags" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_packet_mirroring_rule_test.go.tmpl b/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_packet_mirroring_rule_test.go.tmpl index 7988a653358f..b2af04379dd8 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_packet_mirroring_rule_test.go.tmpl +++ b/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_packet_mirroring_rule_test.go.tmpl @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/plancheck" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" _ "github.com/hashicorp/terraform-provider-google/google/services/tags" diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_with_rules_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_with_rules_test.go index d257579a5d4f..397247b62e78 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_with_rules_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_network_firewall_policy_with_rules_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/tags" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_region_health_aggregation_policy_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_region_health_aggregation_policy_test.go index e645af889b6b..ef9e845454e9 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_region_health_aggregation_policy_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_region_health_aggregation_policy_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccComputeRegionHealthAggregationPolicy_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_region_network_firewall_policy_with_rules_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_region_network_firewall_policy_with_rules_test.go index 5ac1a1742e1f..14431b7836f3 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_region_network_firewall_policy_with_rules_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_region_network_firewall_policy_with_rules_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/tags" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_region_target_https_proxy_test.go.tmpl b/mmv1/third_party/terraform/services/compute/resource_compute_region_target_https_proxy_test.go.tmpl index 6b1e9f720163..b5ff325d4d04 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_region_target_https_proxy_test.go.tmpl +++ b/mmv1/third_party/terraform/services/compute/resource_compute_region_target_https_proxy_test.go.tmpl @@ -4,6 +4,7 @@ import ( "fmt" "testing" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/certificatemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_security_policy_test.go.tmpl b/mmv1/third_party/terraform/services/compute/resource_compute_security_policy_test.go.tmpl index 47bb67c62e2f..6db9b10ee4df 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_security_policy_test.go.tmpl +++ b/mmv1/third_party/terraform/services/compute/resource_compute_security_policy_test.go.tmpl @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/plancheck" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/recaptchaenterprise" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/tpgresource" diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_storage_pool_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_storage_pool_test.go index 06593b674b5f..10c2f2208eef 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_storage_pool_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_storage_pool_test.go @@ -12,6 +12,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/tags" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_target_https_proxy_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_target_https_proxy_test.go index 75a9d572087f..01790e9a7d6a 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_target_https_proxy_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_target_https_proxy_test.go @@ -10,6 +10,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/certificatemanager" tpgcompute "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" ) diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_wire_group_test.go b/mmv1/third_party/terraform/services/compute/resource_compute_wire_group_test.go index 52dca2b14f1f..e7a9db9e71e7 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_wire_group_test.go +++ b/mmv1/third_party/terraform/services/compute/resource_compute_wire_group_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccComputeWireGroup_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/container/data_source_google_container_engine_versions_test.go b/mmv1/third_party/terraform/services/container/data_source_google_container_engine_versions_test.go index 152ead1957cf..37b8a1c67c57 100644 --- a/mmv1/third_party/terraform/services/container/data_source_google_container_engine_versions_test.go +++ b/mmv1/third_party/terraform/services/container/data_source_google_container_engine_versions_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/container" ) func TestAccContainerEngineVersions_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/containeranalysis/data_source_container_registry_test.go b/mmv1/third_party/terraform/services/containeranalysis/data_source_container_registry_test.go index fd71a34ca2d9..8266ea63b2e7 100644 --- a/mmv1/third_party/terraform/services/containeranalysis/data_source_container_registry_test.go +++ b/mmv1/third_party/terraform/services/containeranalysis/data_source_container_registry_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/container" ) func TestAccDataSourceGoogleContainerRegistryRepository(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_install_manifest_test.go b/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_install_manifest_test.go index 65020e838825..bdb6e72a906c 100644 --- a/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_install_manifest_test.go +++ b/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_install_manifest_test.go @@ -7,6 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/containerattached" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataSourceGoogleContainerAttachedInstallManifest(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_versions_test.go b/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_versions_test.go index 4c10bfc349d7..6d523488abec 100644 --- a/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_versions_test.go +++ b/mmv1/third_party/terraform/services/containerattached/data_source_google_container_attached_versions_test.go @@ -9,6 +9,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/containerattached" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataSourceGoogleContainerAttachedVersions(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/containerattached/resource_container_attached_cluster_update_test.go b/mmv1/third_party/terraform/services/containerattached/resource_container_attached_cluster_update_test.go index ee9e7fc8153a..0236ee146696 100644 --- a/mmv1/third_party/terraform/services/containerattached/resource_container_attached_cluster_update_test.go +++ b/mmv1/third_party/terraform/services/containerattached/resource_container_attached_cluster_update_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/containerattached" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccContainerAttachedCluster_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_connection_profile_test.go b/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_connection_profile_test.go index e4b60c5edb68..26d98c5561de 100644 --- a/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_connection_profile_test.go +++ b/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_connection_profile_test.go @@ -4,6 +4,7 @@ import ( "testing" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/databasemigrationservice" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" diff --git a/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_migration_job_test.go b/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_migration_job_test.go index f71166f6e740..caa8d291e5a5 100644 --- a/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_migration_job_test.go +++ b/mmv1/third_party/terraform/services/databasemigrationservice/resource_database_migration_service_migration_job_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/databasemigrationservice" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" _ "github.com/hashicorp/terraform-provider-google/google/services/sql" ) diff --git a/mmv1/third_party/terraform/services/dataplex/resource_dataplex_task_test.go b/mmv1/third_party/terraform/services/dataplex/resource_dataplex_task_test.go index cf50e1618bac..883a8a6a57ad 100644 --- a/mmv1/third_party/terraform/services/dataplex/resource_dataplex_task_test.go +++ b/mmv1/third_party/terraform/services/dataplex/resource_dataplex_task_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/dataplex" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataplexTaskDataplexTask_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/dataproc/resource_dataproc_workflow_template_test.go.tmpl b/mmv1/third_party/terraform/services/dataproc/resource_dataproc_workflow_template_test.go.tmpl index 798fc7174044..3f7f380c8807 100644 --- a/mmv1/third_party/terraform/services/dataproc/resource_dataproc_workflow_template_test.go.tmpl +++ b/mmv1/third_party/terraform/services/dataproc/resource_dataproc_workflow_template_test.go.tmpl @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/dataproc" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/kms" diff --git a/mmv1/third_party/terraform/services/dataprocmetastore/resource_dataproc_metastore_service_test.go b/mmv1/third_party/terraform/services/dataprocmetastore/resource_dataproc_metastore_service_test.go index e5b69db07674..f4104937abc6 100644 --- a/mmv1/third_party/terraform/services/dataprocmetastore/resource_dataproc_metastore_service_test.go +++ b/mmv1/third_party/terraform/services/dataprocmetastore/resource_dataproc_metastore_service_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/dataprocmetastore" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" "github.com/hashicorp/terraform-provider-google/google/services/tags" diff --git a/mmv1/third_party/terraform/services/datastream/data_source_google_datastream_static_ips_test.go b/mmv1/third_party/terraform/services/datastream/data_source_google_datastream_static_ips_test.go index 67e78532503d..ebb9e6485d09 100644 --- a/mmv1/third_party/terraform/services/datastream/data_source_google_datastream_static_ips_test.go +++ b/mmv1/third_party/terraform/services/datastream/data_source_google_datastream_static_ips_test.go @@ -6,6 +6,8 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/datastream" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataSourceGoogleDatastreamStaticIps_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/datastream/resource_datastream_connection_profile_test.go b/mmv1/third_party/terraform/services/datastream/resource_datastream_connection_profile_test.go index 23a8d1f32b11..d7e2e9b59d71 100644 --- a/mmv1/third_party/terraform/services/datastream/resource_datastream_connection_profile_test.go +++ b/mmv1/third_party/terraform/services/datastream/resource_datastream_connection_profile_test.go @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/datastream" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" _ "github.com/hashicorp/terraform-provider-google/google/services/sql" ) diff --git a/mmv1/third_party/terraform/services/datastream/resource_datastream_stream_test.go b/mmv1/third_party/terraform/services/datastream/resource_datastream_stream_test.go index 0ac1d3a69b42..fb71ef4b69e6 100644 --- a/mmv1/third_party/terraform/services/datastream/resource_datastream_stream_test.go +++ b/mmv1/third_party/terraform/services/datastream/resource_datastream_stream_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/datastream" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/sql" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" ) diff --git a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflow_cx_tool_test.go.tmpl b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflow_cx_tool_test.go.tmpl index e23de50beb85..7897114e2d84 100644 --- a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflow_cx_tool_test.go.tmpl +++ b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflow_cx_tool_test.go.tmpl @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/integrationconnectors" _ "github.com/hashicorp/terraform-provider-google/google/services/bigquery" _ "github.com/hashicorp/terraform-provider-google/google/services/dialogflowcx" diff --git a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_page_test.go b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_page_test.go index 9b0f6a4c905d..5f24515994e6 100644 --- a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_page_test.go +++ b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_page_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/dialogflowcx" _ "github.com/hashicorp/terraform-provider-google/google/services/discoveryengine" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDialogflowCXPage_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_webhook_test.go b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_webhook_test.go index aa363f881286..a2bb3dae57a4 100644 --- a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_webhook_test.go +++ b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_webhook_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/dialogflowcx" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDialogflowCXWebhook_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_cmek_config_test.go b/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_cmek_config_test.go index 0503237723fb..066ad7680dd9 100644 --- a/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_cmek_config_test.go +++ b/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_cmek_config_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/discoveryengine" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDiscoveryEngineCmekConfig_discoveryengineCmekconfigDefaultExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_user_store_test.go b/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_user_store_test.go index 7d185fede2c0..4d31ab78efc0 100644 --- a/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_user_store_test.go +++ b/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_user_store_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/discoveryengine" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDiscoveryEngineUserStore_discoveryengineUserstoreBasicExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_widget_config_test.go b/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_widget_config_test.go index 8bac4de8085e..ff104490d86c 100644 --- a/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_widget_config_test.go +++ b/mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_widget_config_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/discoveryengine" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDiscoveryEngineWidgetConfig_discoveryengineWidgetconfigBasicExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/essentialcontacts/resource_essential_contacts_contact_test.go b/mmv1/third_party/terraform/services/essentialcontacts/resource_essential_contacts_contact_test.go index c004c59ced88..500c6118fef6 100644 --- a/mmv1/third_party/terraform/services/essentialcontacts/resource_essential_contacts_contact_test.go +++ b/mmv1/third_party/terraform/services/essentialcontacts/resource_essential_contacts_contact_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/essentialcontacts" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccEssentialContactsContact_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/filestore/resource_filestore_restore_test.go b/mmv1/third_party/terraform/services/filestore/resource_filestore_restore_test.go index e15335f95ad8..1b27edac4cf6 100644 --- a/mmv1/third_party/terraform/services/filestore/resource_filestore_restore_test.go +++ b/mmv1/third_party/terraform/services/filestore/resource_filestore_restore_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/services/backupdr" _ "github.com/hashicorp/terraform-provider-google/google/services/filestore" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccFilestoreInstance_restore(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/firebase/data_source_google_firebase_admin_sdk_config_test.go.tmpl b/mmv1/third_party/terraform/services/firebase/data_source_google_firebase_admin_sdk_config_test.go.tmpl index 3ec17652cf5d..383825de083f 100644 --- a/mmv1/third_party/terraform/services/firebase/data_source_google_firebase_admin_sdk_config_test.go.tmpl +++ b/mmv1/third_party/terraform/services/firebase/data_source_google_firebase_admin_sdk_config_test.go.tmpl @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/firebase" "github.com/hashicorp/terraform-provider-google/google/envvar" ) diff --git a/mmv1/third_party/terraform/services/gemini/resource_gemini_code_repository_index_test.go b/mmv1/third_party/terraform/services/gemini/resource_gemini_code_repository_index_test.go index 0e12bbd9c67c..22cc67cdcfc3 100644 --- a/mmv1/third_party/terraform/services/gemini/resource_gemini_code_repository_index_test.go +++ b/mmv1/third_party/terraform/services/gemini/resource_gemini_code_repository_index_test.go @@ -11,6 +11,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/developerconnect" _ "github.com/hashicorp/terraform-provider-google/google/services/gemini" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccGeminiCodeRepositoryIndex_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/gemini/resource_gemini_code_tools_setting_binding_test.go b/mmv1/third_party/terraform/services/gemini/resource_gemini_code_tools_setting_binding_test.go index 28e5c0114b22..1ccff2571161 100644 --- a/mmv1/third_party/terraform/services/gemini/resource_gemini_code_tools_setting_binding_test.go +++ b/mmv1/third_party/terraform/services/gemini/resource_gemini_code_tools_setting_binding_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/gemini" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccGeminiCodeToolsSettingBinding_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/gemini/resource_gemini_data_sharing_with_google_setting_binding_test.go b/mmv1/third_party/terraform/services/gemini/resource_gemini_data_sharing_with_google_setting_binding_test.go index d3e4c792002e..ef37394bf1c4 100644 --- a/mmv1/third_party/terraform/services/gemini/resource_gemini_data_sharing_with_google_setting_binding_test.go +++ b/mmv1/third_party/terraform/services/gemini/resource_gemini_data_sharing_with_google_setting_binding_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/gemini" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccGeminiDataSharingWithGoogleSettingBinding_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/gemini/resource_gemini_gemini_gcp_enablement_setting_binding_test.go b/mmv1/third_party/terraform/services/gemini/resource_gemini_gemini_gcp_enablement_setting_binding_test.go index 2e545094178d..44f61e5fe297 100644 --- a/mmv1/third_party/terraform/services/gemini/resource_gemini_gemini_gcp_enablement_setting_binding_test.go +++ b/mmv1/third_party/terraform/services/gemini/resource_gemini_gemini_gcp_enablement_setting_binding_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/gemini" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccGeminiGeminiGcpEnablementSettingBinding_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/gemini/resource_gemini_logging_setting_binding_test.go b/mmv1/third_party/terraform/services/gemini/resource_gemini_logging_setting_binding_test.go index 9b7c08f1062b..f5ff8f722c13 100644 --- a/mmv1/third_party/terraform/services/gemini/resource_gemini_logging_setting_binding_test.go +++ b/mmv1/third_party/terraform/services/gemini/resource_gemini_logging_setting_binding_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/gemini" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccGeminiLoggingSettingBinding_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/gemini/resource_gemini_release_channel_setting_binding_test.go b/mmv1/third_party/terraform/services/gemini/resource_gemini_release_channel_setting_binding_test.go index 2794b92d40ac..7b87041c0740 100644 --- a/mmv1/third_party/terraform/services/gemini/resource_gemini_release_channel_setting_binding_test.go +++ b/mmv1/third_party/terraform/services/gemini/resource_gemini_release_channel_setting_binding_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/gemini" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccGeminiReleaseChannelSettingBinding_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/hypercomputecluster/resource_hypercomputecluster_cluster_test.go b/mmv1/third_party/terraform/services/hypercomputecluster/resource_hypercomputecluster_cluster_test.go index 063924b7e51c..babe59bccdd5 100644 --- a/mmv1/third_party/terraform/services/hypercomputecluster/resource_hypercomputecluster_cluster_test.go +++ b/mmv1/third_party/terraform/services/hypercomputecluster/resource_hypercomputecluster_cluster_test.go @@ -11,6 +11,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/filestore" _ "github.com/hashicorp/terraform-provider-google/google/services/hypercomputecluster" _ "github.com/hashicorp/terraform-provider-google/google/services/lustre" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" ) diff --git a/mmv1/third_party/terraform/services/iam3/resource_iam_projects_policy_binding_test.go b/mmv1/third_party/terraform/services/iam3/resource_iam_projects_policy_binding_test.go index a8f044943699..f8174ced073c 100644 --- a/mmv1/third_party/terraform/services/iam3/resource_iam_projects_policy_binding_test.go +++ b/mmv1/third_party/terraform/services/iam3/resource_iam_projects_policy_binding_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/iam3" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccIAM3ProjectsPolicyBinding_iamProjectsPolicyBindingExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_connection_test.go b/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_connection_test.go index 9ff513eccbbe..f91c2f2805e8 100644 --- a/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_connection_test.go +++ b/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_connection_test.go @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/services/integrationconnectors" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" diff --git a/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_endpoint_attachment_test.go b/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_endpoint_attachment_test.go index e15944cf9d8e..951cf606813c 100644 --- a/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_endpoint_attachment_test.go +++ b/mmv1/third_party/terraform/services/integrationconnectors/resource_integration_connectors_endpoint_attachment_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/integrationconnectors" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccIntegrationConnectorsEndpointAttachment_integrationConnectorsEndpointAttachmentExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handle_test.go b/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handle_test.go index 00e02eac8da5..3fb09317b325 100644 --- a/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handle_test.go +++ b/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handle_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/kms" ) func TestAccDataSourceGoogleKmsKeyHandle_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handles_test.go b/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handles_test.go index c74bb3faf42f..a60c6ce59655 100644 --- a/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handles_test.go +++ b/mmv1/third_party/terraform/services/kms/data_source_google_kms_key_handles_test.go @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/kms" ) func TestAccDataSourceGoogleKmsKeyHandles_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/kms/resource_kms_crypto_key_version_test.go b/mmv1/third_party/terraform/services/kms/resource_kms_crypto_key_version_test.go index 6445075c8fea..3c25a45c9615 100644 --- a/mmv1/third_party/terraform/services/kms/resource_kms_crypto_key_version_test.go +++ b/mmv1/third_party/terraform/services/kms/resource_kms_crypto_key_version_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/kms" _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" + _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" "github.com/hashicorp/terraform-plugin-testing/helper/resource" ) diff --git a/mmv1/third_party/terraform/services/kms/resource_kms_ekm_connection_test.go b/mmv1/third_party/terraform/services/kms/resource_kms_ekm_connection_test.go index 2aedf2243c00..a2f8d09b4b21 100644 --- a/mmv1/third_party/terraform/services/kms/resource_kms_ekm_connection_test.go +++ b/mmv1/third_party/terraform/services/kms/resource_kms_ekm_connection_test.go @@ -7,6 +7,8 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" + _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanager" ) func TestAccKMSEkmConnection_kmsEkmConnectionBasicExample_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/logging/data_source_google_logging_folder_settings_test.go b/mmv1/third_party/terraform/services/logging/data_source_google_logging_folder_settings_test.go index 335ab078cb88..03a1c954bde9 100644 --- a/mmv1/third_party/terraform/services/logging/data_source_google_logging_folder_settings_test.go +++ b/mmv1/third_party/terraform/services/logging/data_source_google_logging_folder_settings_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/logging" _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) diff --git a/mmv1/third_party/terraform/services/logging/data_source_google_logging_organization_settings_test.go b/mmv1/third_party/terraform/services/logging/data_source_google_logging_organization_settings_test.go index 78e01cf2c52b..18f04a82475d 100644 --- a/mmv1/third_party/terraform/services/logging/data_source_google_logging_organization_settings_test.go +++ b/mmv1/third_party/terraform/services/logging/data_source_google_logging_organization_settings_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/logging" ) func TestAccLoggingOrganizationSettings_datasource(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_cmek_settings_test.go b/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_cmek_settings_test.go index 7a3bab6c8ae0..1624679497dc 100644 --- a/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_cmek_settings_test.go +++ b/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_cmek_settings_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/logging" _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) diff --git a/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_settings_test.go b/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_settings_test.go index 335473ad9457..e8ec07c4b83f 100644 --- a/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_settings_test.go +++ b/mmv1/third_party/terraform/services/logging/data_source_google_logging_project_settings_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/logging" _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) diff --git a/mmv1/third_party/terraform/services/lustre/resource_lustre_instance_test.go b/mmv1/third_party/terraform/services/lustre/resource_lustre_instance_test.go index dd17733429e5..0c808d155fc6 100644 --- a/mmv1/third_party/terraform/services/lustre/resource_lustre_instance_test.go +++ b/mmv1/third_party/terraform/services/lustre/resource_lustre_instance_test.go @@ -10,6 +10,7 @@ import ( tpgcompute "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/kms" _ "github.com/hashicorp/terraform-provider-google/google/services/lustre" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccLustreInstance_withMaintenancePolicy(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_acl_test.go b/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_acl_test.go index 1eb09c090912..1f027a2a7d2f 100644 --- a/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_acl_test.go +++ b/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_acl_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/managedkafka" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccManagedKafkaAcl_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_cluster_test.go b/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_cluster_test.go index 63cff1ad67d1..9656ba3aa1f4 100644 --- a/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_cluster_test.go +++ b/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_cluster_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/managedkafka" _ "github.com/hashicorp/terraform-provider-google/google/services/privateca" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccManagedKafkaCluster_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_topic_test.go b/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_topic_test.go index 4fea5edba9f4..a350cf7594d6 100644 --- a/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_topic_test.go +++ b/mmv1/third_party/terraform/services/managedkafka/resource_managed_kafka_topic_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/managedkafka" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccManagedKafkaTopic_update(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/memcache/resource_memcache_instance_test.go b/mmv1/third_party/terraform/services/memcache/resource_memcache_instance_test.go index e467ef4773ac..e4d6cc4a0e5d 100644 --- a/mmv1/third_party/terraform/services/memcache/resource_memcache_instance_test.go +++ b/mmv1/third_party/terraform/services/memcache/resource_memcache_instance_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/memcache" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/memorystore/resource_memorystore_instance_test.go b/mmv1/third_party/terraform/services/memorystore/resource_memorystore_instance_test.go index fde29b10eeea..0f748c7d3c68 100644 --- a/mmv1/third_party/terraform/services/memorystore/resource_memorystore_instance_test.go +++ b/mmv1/third_party/terraform/services/memorystore/resource_memorystore_instance_test.go @@ -14,6 +14,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/services/memorystore" _ "github.com/hashicorp/terraform-provider-google/google/services/networkconnectivityv1" _ "github.com/hashicorp/terraform-provider-google/google/services/privateca" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" ) diff --git a/mmv1/third_party/terraform/services/monitoring/data_source_google_monitoring_uptime_check_ips_test.go b/mmv1/third_party/terraform/services/monitoring/data_source_google_monitoring_uptime_check_ips_test.go index c9e9f6016d11..edc98db92fc6 100644 --- a/mmv1/third_party/terraform/services/monitoring/data_source_google_monitoring_uptime_check_ips_test.go +++ b/mmv1/third_party/terraform/services/monitoring/data_source_google_monitoring_uptime_check_ips_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/monitoring" ) func TestAccDataSourceGoogleMonitoringUptimeCheckIps_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/monitoring/data_source_monitoring_service_test.go b/mmv1/third_party/terraform/services/monitoring/data_source_monitoring_service_test.go index 383778307d2b..6f6c43c8b356 100644 --- a/mmv1/third_party/terraform/services/monitoring/data_source_monitoring_service_test.go +++ b/mmv1/third_party/terraform/services/monitoring/data_source_monitoring_service_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/monitoring" ) func TestAccDataSourceMonitoringService_AppEngine(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/netapp/resource_netapp_backup_test.go b/mmv1/third_party/terraform/services/netapp/resource_netapp_backup_test.go index 82e28ad82507..6b5ecd064632 100644 --- a/mmv1/third_party/terraform/services/netapp/resource_netapp_backup_test.go +++ b/mmv1/third_party/terraform/services/netapp/resource_netapp_backup_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/netapp/resource_netapp_storage_pool_test.go.tmpl b/mmv1/third_party/terraform/services/netapp/resource_netapp_storage_pool_test.go.tmpl index c01f143f9b43..fd345ecd714d 100644 --- a/mmv1/third_party/terraform/services/netapp/resource_netapp_storage_pool_test.go.tmpl +++ b/mmv1/third_party/terraform/services/netapp/resource_netapp_storage_pool_test.go.tmpl @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_quotaRule_test.go b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_quotaRule_test.go index 51d36fa5130c..efcd791b6839 100644 --- a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_quotaRule_test.go +++ b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_quotaRule_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_replication_test.go b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_replication_test.go index 085236cfd463..630dbe0ef0b9 100644 --- a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_replication_test.go +++ b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_replication_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_snapshot_test.go b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_snapshot_test.go index 2e8c44f69519..0b203359707a 100644 --- a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_snapshot_test.go +++ b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_snapshot_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" ) diff --git a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_test.go.tmpl b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_test.go.tmpl index d634a23099b9..3a05ce4cbeb2 100644 --- a/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_test.go.tmpl +++ b/mmv1/third_party/terraform/services/netapp/resource_netapp_volume_test.go.tmpl @@ -12,6 +12,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" diff --git a/mmv1/third_party/terraform/services/networkconnectivity/resource_network_connectivity_transport_test.go b/mmv1/third_party/terraform/services/networkconnectivity/resource_network_connectivity_transport_test.go index a045ce87c039..9f20264ba5a3 100644 --- a/mmv1/third_party/terraform/services/networkconnectivity/resource_network_connectivity_transport_test.go +++ b/mmv1/third_party/terraform/services/networkconnectivity/resource_network_connectivity_transport_test.go @@ -15,6 +15,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networkconnectivity" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" diff --git a/mmv1/third_party/terraform/services/networkmanagement/resource_network_management_vpc_flow_logs_config_test.go b/mmv1/third_party/terraform/services/networkmanagement/resource_network_management_vpc_flow_logs_config_test.go index 3bde7fcc5c7c..f86e3946151a 100644 --- a/mmv1/third_party/terraform/services/networkmanagement/resource_network_management_vpc_flow_logs_config_test.go +++ b/mmv1/third_party/terraform/services/networkmanagement/resource_network_management_vpc_flow_logs_config_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networkmanagement" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccNetworkManagementVpcFlowLogsConfig_updateInterconnect(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/networksecurity/resource_network_security_authz_policy_test.go b/mmv1/third_party/terraform/services/networksecurity/resource_network_security_authz_policy_test.go index d2994bbb68e4..2b4013d6548a 100644 --- a/mmv1/third_party/terraform/services/networksecurity/resource_network_security_authz_policy_test.go +++ b/mmv1/third_party/terraform/services/networksecurity/resource_network_security_authz_policy_test.go @@ -10,6 +10,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/networksecurity" _ "github.com/hashicorp/terraform-provider-google/google/services/networkservices" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccNetworkSecurityAuthzPolicy_networkServicesAuthzPolicyHttpRules(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/networkservices/resource_network_services_wasm_plugin_test.go b/mmv1/third_party/terraform/services/networkservices/resource_network_services_wasm_plugin_test.go index 6273e29b1c78..316647b2d05f 100644 --- a/mmv1/third_party/terraform/services/networkservices/resource_network_services_wasm_plugin_test.go +++ b/mmv1/third_party/terraform/services/networkservices/resource_network_services_wasm_plugin_test.go @@ -20,6 +20,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" _ "github.com/hashicorp/terraform-provider-google/google/services/artifactregistry" "github.com/hashicorp/terraform-provider-google/google/services/networkservices" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" "google.golang.org/api/googleapi" diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_database_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_database_test.go index 7cf17999d4e4..a0c4182d13c8 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_database_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_database_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseAutonomousDatabase_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_databases_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_databases_test.go index 2ee722c0252c..e24c338d1d48 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_databases_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_autonomous_databases_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseAutonomousDatabases_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructure_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructure_test.go index c2dcb5dc6e17..0a1dc3e1b768 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructure_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructure_test.go @@ -4,6 +4,7 @@ import ( "fmt" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" "testing" ) diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructures_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructures_test.go index 5a9752323426..415e1b5fe154 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructures_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_exadata_infrastructures_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseCloudExadataInfrastructures_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_cluster_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_cluster_test.go index cd7fd381f7da..ee4b97d9f6f9 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_cluster_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_cluster_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseCloudVmCluster_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_clusters_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_clusters_test.go index db9df1244d32..593bc09c897a 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_clusters_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_cloud_vm_clusters_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseCloudVmClusters_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_nodes_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_nodes_test.go index 7cb74bf8ffb6..5c433ce281ee 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_nodes_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_nodes_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseDbNodes_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_servers_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_servers_test.go index e81972c4c9b2..7ccb5eb64339 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_servers_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_db_servers_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseDbServers_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_connection_types_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_connection_types_test.go index 0e8c14ae343c..306efd37b93e 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_connection_types_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_connection_types_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) var oracleProject = flag.String("oracle_project", "oci-terraform-testing-prod", "The project to use for Oracle Database tests") diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_deployment_environments_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_deployment_environments_test.go index 2466a3cc42ca..a917902b543a 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_deployment_environments_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_goldengate_deployment_environments_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseGoldengateDeploymentEnvironments_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_network_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_network_test.go index 4a3edf4dee0e..c8e7eafb69eb 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_network_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_network_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseOdbNetwork_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_subnet_test.go b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_subnet_test.go index ca79c557db98..cf6c29dc7755 100644 --- a/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_subnet_test.go +++ b/mmv1/third_party/terraform/services/oracledatabase/data_source_oracle_database_odb_subnet_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/oracledatabase" ) func TestAccOracleDatabaseOdbSubnet_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/privilegedaccessmanager/data_source_privileged_access_manager_entitlement_test.go b/mmv1/third_party/terraform/services/privilegedaccessmanager/data_source_privileged_access_manager_entitlement_test.go index fc693c87ed78..43231c7ffa19 100644 --- a/mmv1/third_party/terraform/services/privilegedaccessmanager/data_source_privileged_access_manager_entitlement_test.go +++ b/mmv1/third_party/terraform/services/privilegedaccessmanager/data_source_privileged_access_manager_entitlement_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/privilegedaccessmanager" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataSourceGooglePrivilegedAccessManagerEntitlement_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/redis/resource_redis_cluster_test.go b/mmv1/third_party/terraform/services/redis/resource_redis_cluster_test.go index adb17dfcb4f4..bd15880b95b9 100644 --- a/mmv1/third_party/terraform/services/redis/resource_redis_cluster_test.go +++ b/mmv1/third_party/terraform/services/redis/resource_redis_cluster_test.go @@ -15,6 +15,7 @@ import ( _ "github.com/hashicorp/terraform-provider-google/google/services/networkconnectivityv1" _ "github.com/hashicorp/terraform-provider-google/google/services/privateca" "github.com/hashicorp/terraform-provider-google/google/services/redis" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" ) diff --git a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organization_test.go b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organization_test.go index 0d8716415cab..7e796737b8e7 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organization_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organization_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-plugin-testing/helper/resource" ) diff --git a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organizations_test.go b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organizations_test.go index 31a2b2a65b37..87dc2c3dd2ef 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organizations_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_organizations_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataSourceGoogleOrganizations_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_projects_test.go b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_projects_test.go index 35a163ed4434..c750639ee906 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_projects_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_projects_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccDataSourceGoogleProjects_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_access_token_test.go b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_access_token_test.go index 48b0044a3433..01d39ad89255 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_access_token_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_access_token_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/iambeta" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" diff --git a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_id_token_test.go b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_id_token_test.go index 443c81a2a60d..6d84f7a248d4 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_id_token_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/data_source_google_service_account_id_token_test.go @@ -13,6 +13,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/iambeta" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) const targetAudience = "https://foo.bar/" diff --git a/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_access_token_test.go b/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_access_token_test.go index 43afd0e41fa4..b00e343e5324 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_access_token_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_access_token_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/iambeta" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) var defaultMaxLifetime string = "3600s" diff --git a/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_id_token_test.go b/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_id_token_test.go index 33e0ad0c48dc..7eda204ce637 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_id_token_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_id_token_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/iambeta" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccEphemeralServiceAccountIdToken_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_jwt_test.go b/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_jwt_test.go index 6db804a583d6..5137a4e86bf9 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_jwt_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/ephemeral_google_service_account_jwt_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/iambeta" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) func TestAccEphemeralServiceAccountJwt_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/resourcemanager/list_google_service_account_test.go b/mmv1/third_party/terraform/services/resourcemanager/list_google_service_account_test.go index f9dca1d8cf7c..e86d5b81cf36 100644 --- a/mmv1/third_party/terraform/services/resourcemanager/list_google_service_account_test.go +++ b/mmv1/third_party/terraform/services/resourcemanager/list_google_service_account_test.go @@ -12,6 +12,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" ) // TestAccServiceAccountListResource_queryIdentity lists service accounts via the diff --git a/mmv1/third_party/terraform/services/secretmanagerregional/data_source_secret_manager_regional_secret_test.go b/mmv1/third_party/terraform/services/secretmanagerregional/data_source_secret_manager_regional_secret_test.go index 2becb4396493..5005a6db956f 100644 --- a/mmv1/third_party/terraform/services/secretmanagerregional/data_source_secret_manager_regional_secret_test.go +++ b/mmv1/third_party/terraform/services/secretmanagerregional/data_source_secret_manager_regional_secret_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/services/kms" _ "github.com/hashicorp/terraform-provider-google/google/services/pubsub" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanagerregional" ) diff --git a/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_test.go b/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_test.go index 9071c4656ba8..165ca565ac92 100644 --- a/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_test.go +++ b/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/envvar" "github.com/hashicorp/terraform-provider-google/google/services/kms" _ "github.com/hashicorp/terraform-provider-google/google/services/pubsub" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanagerregional" "github.com/hashicorp/terraform-provider-google/google/services/tags" diff --git a/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_version_test.go b/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_version_test.go index 8db8c901f211..6b90c0be41ea 100644 --- a/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_version_test.go +++ b/mmv1/third_party/terraform/services/secretmanagerregional/resource_secret_manager_regional_secret_version_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/secretmanagerregional" ) diff --git a/mmv1/third_party/terraform/services/siteverification/data_source_google_site_verification_token_test.go b/mmv1/third_party/terraform/services/siteverification/data_source_google_site_verification_token_test.go index a982511d3a9c..efd5f6dfec48 100644 --- a/mmv1/third_party/terraform/services/siteverification/data_source_google_site_verification_token_test.go +++ b/mmv1/third_party/terraform/services/siteverification/data_source_google_site_verification_token_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/siteverification" ) func TestAccSiteVerificationToken_siteverificationTokenSite(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/sql/data_source_google_sql_tiers_test.go b/mmv1/third_party/terraform/services/sql/data_source_google_sql_tiers_test.go index 7730faea4cdf..6dfd6bd97a76 100644 --- a/mmv1/third_party/terraform/services/sql/data_source_google_sql_tiers_test.go +++ b/mmv1/third_party/terraform/services/sql/data_source_google_sql_tiers_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/sql" ) func TestAccDataSourceGoogleSqlTiers_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/storage/data_source_google_storage_project_service_account_test.go b/mmv1/third_party/terraform/services/storage/data_source_google_storage_project_service_account_test.go index bb5687294c06..e5bec0465fe6 100644 --- a/mmv1/third_party/terraform/services/storage/data_source_google_storage_project_service_account_test.go +++ b/mmv1/third_party/terraform/services/storage/data_source_google_storage_project_service_account_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/storage" ) func TestAccDataSourceGoogleStorageProjectServiceAccount_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/storageinsights/resource_storage_insights_report_config_test.go b/mmv1/third_party/terraform/services/storageinsights/resource_storage_insights_report_config_test.go index 890fdb7485f8..88e46e0f4ef7 100644 --- a/mmv1/third_party/terraform/services/storageinsights/resource_storage_insights_report_config_test.go +++ b/mmv1/third_party/terraform/services/storageinsights/resource_storage_insights_report_config_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" _ "github.com/hashicorp/terraform-provider-google/google/services/storageinsights" ) diff --git a/mmv1/third_party/terraform/services/storagetransfer/data_source_google_storage_transfer_project_service_account_test.go b/mmv1/third_party/terraform/services/storagetransfer/data_source_google_storage_transfer_project_service_account_test.go index f09131c19cba..623c7145f49c 100644 --- a/mmv1/third_party/terraform/services/storagetransfer/data_source_google_storage_transfer_project_service_account_test.go +++ b/mmv1/third_party/terraform/services/storagetransfer/data_source_google_storage_transfer_project_service_account_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/storagetransfer" ) func TestAccDataSourceGoogleStorageTransferProjectServiceAccount_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_accelerator_types_test.go.tmpl b/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_accelerator_types_test.go.tmpl index 13152c86e115..5fac02233312 100644 --- a/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_accelerator_types_test.go.tmpl +++ b/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_accelerator_types_test.go.tmpl @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/tpuv2" ) func TestAccTpuV2AcceleratorTypes_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_runtime_versions_test.go.tmpl b/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_runtime_versions_test.go.tmpl index 278a1257b60d..5743cc419d80 100644 --- a/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_runtime_versions_test.go.tmpl +++ b/mmv1/third_party/terraform/services/tpuv2/data_source_tpu_v2_runtime_versions_test.go.tmpl @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/tpuv2" ) func TestAccTpuV2RuntimeVersions_basic(t *testing.T) { diff --git a/mmv1/third_party/terraform/services/vertexai/iam_vertex_endpoint_test.go.tmpl b/mmv1/third_party/terraform/services/vertexai/iam_vertex_endpoint_test.go.tmpl index 3fe7eb40896f..2163a5b7420a 100644 --- a/mmv1/third_party/terraform/services/vertexai/iam_vertex_endpoint_test.go.tmpl +++ b/mmv1/third_party/terraform/services/vertexai/iam_vertex_endpoint_test.go.tmpl @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/vertexai" _ "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" diff --git a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_test.go b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_test.go index 261205873784..14c74cce871e 100644 --- a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_test.go +++ b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_test.go @@ -7,7 +7,9 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/bigquery" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" "github.com/hashicorp/terraform-provider-google/google/services/kms" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" _ "github.com/hashicorp/terraform-provider-google/google/services/vertexai" ) diff --git a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_with_model_garden_deployment_test.go b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_with_model_garden_deployment_test.go index 23083ea12947..b3689a23afb7 100644 --- a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_with_model_garden_deployment_test.go +++ b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_endpoint_with_model_garden_deployment_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/vertexai" "github.com/hashicorp/terraform-provider-google/google/tpgresource" transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport" diff --git a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_feature_online_store_featureview_test.go b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_feature_online_store_featureview_test.go index bad0046b19e3..0451602cb7d3 100644 --- a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_feature_online_store_featureview_test.go +++ b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_feature_online_store_featureview_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/bigquery" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/vertexai" ) diff --git a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_deployed_index_test.go b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_deployed_index_test.go index 1109f77c2140..b12b3611c305 100644 --- a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_deployed_index_test.go +++ b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_deployed_index_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/storage" _ "github.com/hashicorp/terraform-provider-google/google/services/vertexai" ) diff --git a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_test.go b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_test.go index 8e6d4901d12d..3bb420eb5c0a 100644 --- a/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_test.go +++ b/mmv1/third_party/terraform/services/vertexai/resource_vertex_ai_index_endpoint_test.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" "github.com/hashicorp/terraform-provider-google/google/services/servicenetworking" _ "github.com/hashicorp/terraform-provider-google/google/services/vertexai" ) diff --git a/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_cluster_test.go b/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_cluster_test.go index 3352d171ff51..70f7e1f0f328 100644 --- a/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_cluster_test.go +++ b/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_cluster_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/filestore" "github.com/hashicorp/terraform-plugin-testing/helper/resource" diff --git a/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_datastore_test.go b/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_datastore_test.go index cc1cd681868d..791a7919ed9d 100644 --- a/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_datastore_test.go +++ b/mmv1/third_party/terraform/services/vmwareengine/resource_vmwareengine_datastore_test.go @@ -11,6 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/plancheck" "github.com/hashicorp/terraform-provider-google/google/acctest" "github.com/hashicorp/terraform-provider-google/google/envvar" + _ "github.com/hashicorp/terraform-provider-google/google/services/compute" _ "github.com/hashicorp/terraform-provider-google/google/services/filestore" _ "github.com/hashicorp/terraform-provider-google/google/services/netapp" "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" diff --git a/mmv1/third_party/terraform/services/workloadidentity/resource_workload_identity_service_agent_test.go b/mmv1/third_party/terraform/services/workloadidentity/resource_workload_identity_service_agent_test.go index 8822f2e4601e..980d92766722 100644 --- a/mmv1/third_party/terraform/services/workloadidentity/resource_workload_identity_service_agent_test.go +++ b/mmv1/third_party/terraform/services/workloadidentity/resource_workload_identity_service_agent_test.go @@ -9,6 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" "github.com/hashicorp/terraform-provider-google/google/acctest" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/workloadidentity" ) diff --git a/mmv1/third_party/terraform/services/workstations/resource_workstations_workstation_cluster_test.go b/mmv1/third_party/terraform/services/workstations/resource_workstations_workstation_cluster_test.go index 7ed9766a3306..d067888b9afb 100644 --- a/mmv1/third_party/terraform/services/workstations/resource_workstations_workstation_cluster_test.go +++ b/mmv1/third_party/terraform/services/workstations/resource_workstations_workstation_cluster_test.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-provider-google/google/acctest" _ "github.com/hashicorp/terraform-provider-google/google/services/compute" + _ "github.com/hashicorp/terraform-provider-google/google/services/resourcemanager" _ "github.com/hashicorp/terraform-provider-google/google/services/workstations" )