Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
containers {
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_custom_audiences/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

custom_audiences = ["aud1"]
template {
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_directvpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
containers {
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_limits/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
containers {
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_mount_gcs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {

location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
containers {
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_mount_nfs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {

location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
containers {
Expand Down
3 changes: 1 addition & 2 deletions cloudrunv2_worker_pool_multicontainer/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
containers {
name = "hello-1"
image = "us-docker.pkg.dev/cloudrun/container/worker-pool"
depends_on = ["hello-2"]
volume_mounts {
name = "empty-dir-volume"
mount_path = "/mnt"
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_secret/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {
volumes {
Expand Down
2 changes: 1 addition & 1 deletion cloudrunv2_worker_pool_sql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
name = "cloudrun-worker-pool-${local.name_suffix}"
location = "us-central1"
deletion_protection = false
launch_stage = "ALPHA"
launch_stage = "BETA"

template {

Expand Down