Skip to content

Commit 10fe489

Browse files
Promote launch stage to BETA (#14294) (#1026)
[upstream:45145b6b1fc47488915d7ff13bf5e17688db3a68] Signed-off-by: Modular Magician <[email protected]>
1 parent 89a34c8 commit 10fe489

File tree

9 files changed

+9
-10
lines changed
  • cloudrunv2_worker_pool_basic
  • cloudrunv2_worker_pool_custom_audiences
  • cloudrunv2_worker_pool_directvpc
  • cloudrunv2_worker_pool_limits
  • cloudrunv2_worker_pool_mount_gcs
  • cloudrunv2_worker_pool_mount_nfs
  • cloudrunv2_worker_pool_multicontainer
  • cloudrunv2_worker_pool_secret
  • cloudrunv2_worker_pool_sql

9 files changed

+9
-10
lines changed

cloudrunv2_worker_pool_basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
template {
88
containers {

cloudrunv2_worker_pool_custom_audiences/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
custom_audiences = ["aud1"]
88
template {

cloudrunv2_worker_pool_directvpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
template {
88
containers {

cloudrunv2_worker_pool_limits/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
template {
88
containers {

cloudrunv2_worker_pool_mount_gcs/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
33

44
location = "us-central1"
55
deletion_protection = false
6-
launch_stage = "ALPHA"
6+
launch_stage = "BETA"
77

88
template {
99
containers {

cloudrunv2_worker_pool_mount_nfs/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
33

44
location = "us-central1"
55
deletion_protection = false
6-
launch_stage = "ALPHA"
6+
launch_stage = "BETA"
77

88
template {
99
containers {

cloudrunv2_worker_pool_multicontainer/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
template {
88
containers {
99
name = "hello-1"
1010
image = "us-docker.pkg.dev/cloudrun/container/worker-pool"
11-
depends_on = ["hello-2"]
1211
volume_mounts {
1312
name = "empty-dir-volume"
1413
mount_path = "/mnt"

cloudrunv2_worker_pool_secret/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
template {
88
volumes {

cloudrunv2_worker_pool_sql/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
22
name = "cloudrun-worker-pool-${local.name_suffix}"
33
location = "us-central1"
44
deletion_protection = false
5-
launch_stage = "ALPHA"
5+
launch_stage = "BETA"
66

77
template {
88

0 commit comments

Comments
 (0)