diff --git a/mmv1/third_party/terraform/services/compute/resource_compute_subnetwork_test.go.erb b/mmv1/third_party/terraform/services/compute/resource_compute_subnetwork_test.go.erb index 0cec3b5fab2f..cf3e5d345cf0 100644 --- a/mmv1/third_party/terraform/services/compute/resource_compute_subnetwork_test.go.erb +++ b/mmv1/third_party/terraform/services/compute/resource_compute_subnetwork_test.go.erb @@ -144,19 +144,6 @@ func TestAccComputeSubnetwork_update(t *testing.T) { ImportState: true, ImportStateVerify: true, }, - { - // - Config: testAccComputeSubnetwork_update4(cnName, "10.2.0.0/24", subnetworkName), - Check: resource.ComposeTestCheckFunc( - testAccCheckComputeSubnetworkExists( - t, "google_compute_subnetwork.network-with-private-google-access", &subnetwork), - ), - }, - { - ResourceName: "google_compute_subnetwork.network-with-private-google-access", - ImportState: true, - ImportStateVerify: true, - }, }, }) @@ -643,23 +630,6 @@ resource "google_compute_subnetwork" "network-with-private-secondary-ip-ranges" `, cnName, subnetworkName) } -func testAccComputeSubnetwork_secondaryIpRanges_update4(cnName, subnetworkName string) string { - return fmt.Sprintf(` -resource "google_compute_network" "custom-test" { - name = "%s" - auto_create_subnetworks = false -} - -resource "google_compute_subnetwork" "network-with-private-secondary-ip-ranges" { - name = "%s" - ip_cidr_range = "10.2.0.0/16" - region = "us-central1" - network = google_compute_network.custom-test.self_link - secondary_ip_range = [] -} -`, cnName, subnetworkName) -} - func testAccComputeSubnetwork_flowLogs(cnName, subnetworkName string) string { return fmt.Sprintf(` resource "google_compute_network" "custom-test" {