Skip to content

Commit 3ce786d

Browse files
fix:update resource template to remove beta and egree (#10536) (#7296)
[upstream:75d1c6408307487c88296260f4a41c3b50a2da10] Signed-off-by: Modular Magician <[email protected]>
1 parent 9f29b51 commit 3ce786d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

google-beta/services/cloudrunv2/resource_cloud_run_v2_job_generated_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ func testAccCloudRunV2Job_cloudrunv2JobDirectvpcExample(context map[string]inter
324324
resource "google_cloud_run_v2_job" "default" {
325325
name = "tf-test-cloudrun-job%{random_suffix}"
326326
location = "us-central1"
327-
launch_stage = "BETA"
327+
launch_stage = "GA"
328328
template {
329329
template{
330330
containers {
@@ -336,7 +336,6 @@ resource "google_cloud_run_v2_job" "default" {
336336
subnetwork = "default"
337337
tags = ["tag1", "tag2", "tag3"]
338338
}
339-
egress = "ALL_TRAFFIC"
340339
}
341340
}
342341
}

website/docs/r/cloud_run_v2_job.html.markdown

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ resource "google_compute_network" "custom_test" {
223223
resource "google_cloud_run_v2_job" "default" {
224224
name = "cloudrun-job"
225225
location = "us-central1"
226-
launch_stage = "BETA"
226+
launch_stage = "GA"
227227
template {
228228
template{
229229
containers {
@@ -235,7 +235,6 @@ resource "google_cloud_run_v2_job" "default" {
235235
subnetwork = "default"
236236
tags = ["tag1", "tag2", "tag3"]
237237
}
238-
egress = "ALL_TRAFFIC"
239238
}
240239
}
241240
}

0 commit comments

Comments
 (0)