@@ -1143,9 +1143,6 @@ resource "google_cloud_run_v2_service" "default" {
11431143`, context)
11441144}
11451145
1146-
1147- {{ if ne $.TargetVersionName `ga` -}}
1148-
11491146func TestAccCloudRunV2Service_cloudrunv2ServiceWithDefaultUriDisabled(t *testing.T) {
11501147 t.Parallel()
11511148 context := map[string]interface{} {
@@ -1163,7 +1160,7 @@ func TestAccCloudRunV2Service_cloudrunv2ServiceWithDefaultUriDisabled(t *testing
11631160 ResourceName: "google_cloud_run_v2_service.default",
11641161 ImportState: true,
11651162 ImportStateVerify: true,
1166- ImportStateVerifyIgnore: []string{"name", "location", "annotations", "labels", "terraform_labels", "launch_stage", " deletion_protection"},
1163+ ImportStateVerifyIgnore: []string{"name", "location", "annotations", "labels", "terraform_labels", "deletion_protection"},
11671164 },
11681165 {
11691166 Config: testAccCloudRunV2Service_cloudrunv2ServiceWithNoMinInstances(context),
@@ -1172,7 +1169,7 @@ func TestAccCloudRunV2Service_cloudrunv2ServiceWithDefaultUriDisabled(t *testing
11721169 ResourceName: "google_cloud_run_v2_service.default",
11731170 ImportState: true,
11741171 ImportStateVerify: true,
1175- ImportStateVerifyIgnore: []string{"name", "location", "annotations", "labels", "terraform_labels", "launch_stage", " deletion_protection"},
1172+ ImportStateVerifyIgnore: []string{"name", "location", "annotations", "labels", "terraform_labels", "deletion_protection"},
11761173 },
11771174
11781175 },
@@ -1186,7 +1183,6 @@ resource "google_cloud_run_v2_service" "default" {
11861183 description = "description creating"
11871184 location = "us-central1"
11881185 deletion_protection = false
1189- launch_stage = "BETA"
11901186 annotations = {
11911187 generated-by = "magic-modules"
11921188 }
@@ -1206,18 +1202,11 @@ resource "google_cloud_run_v2_service" "default" {
12061202 image = "us-docker.pkg.dev/cloudrun/container/hello"
12071203 }
12081204 }
1209- lifecycle {
1210- ignore_changes = [
1211- launch_stage,
1212- ]
1213- }
12141205}
12151206
12161207`, context)
12171208}
12181209
1219- {{ end }}
1220-
12211210{{ if ne $.TargetVersionName `ga` -}}
12221211func TestAccCloudRunV2Service_cloudrunv2ServiceMeshUpdate(t *testing.T) {
12231212 t.Parallel()
0 commit comments