Skip to content

Commit

Permalink
fix:update resource template to remove beta and egree (#10536) (#17968)
Browse files Browse the repository at this point in the history
[upstream:75d1c6408307487c88296260f4a41c3b50a2da10]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Apr 26, 2024
1 parent 7b2015b commit f358149
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ func testAccCloudRunV2Job_cloudrunv2JobDirectvpcExample(context map[string]inter
resource "google_cloud_run_v2_job" "default" {
name = "tf-test-cloudrun-job%{random_suffix}"
location = "us-central1"
launch_stage = "BETA"
launch_stage = "GA"
template {
template{
containers {
Expand All @@ -336,7 +336,6 @@ resource "google_cloud_run_v2_job" "default" {
subnetwork = "default"
tags = ["tag1", "tag2", "tag3"]
}
egress = "ALL_TRAFFIC"
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions website/docs/r/cloud_run_v2_job.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ resource "google_compute_network" "custom_test" {
resource "google_cloud_run_v2_job" "default" {
name = "cloudrun-job"
location = "us-central1"
launch_stage = "BETA"
launch_stage = "GA"
template {
template{
containers {
Expand All @@ -235,7 +235,6 @@ resource "google_cloud_run_v2_job" "default" {
subnetwork = "default"
tags = ["tag1", "tag2", "tag3"]
}
egress = "ALL_TRAFFIC"
}
}
}
Expand Down

0 comments on commit f358149

Please sign in to comment.