Skip to content

Commit 4432cde

Browse files
authored
Remove the beta label from url disabled (#15256)
1 parent 9b16419 commit 4432cde

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

mmv1/products/cloudrunv2/Service.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,6 @@ properties:
359359
type: Boolean
360360
description: |-
361361
Disables public resolution of the default URI of this service.
362-
min_version: 'beta'
363362
- name: 'template'
364363
type: NestedObject
365364
description: |

mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_service_test.go.tmpl

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,9 +1143,6 @@ resource "google_cloud_run_v2_service" "default" {
11431143
`, context)
11441144
}
11451145

1146-
1147-
{{ if ne $.TargetVersionName `ga` -}}
1148-
11491146
func 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` -}}
12221211
func TestAccCloudRunV2Service_cloudrunv2ServiceMeshUpdate(t *testing.T) {
12231212
t.Parallel()

0 commit comments

Comments
 (0)