Skip to content
Open
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
8 changes: 4 additions & 4 deletions examples/internal-lb-cloud-run/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module "internal-lb-subnet" {

module "backend-service-region-a" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.16.3"
version = "~> 0.21.0"
project_id = var.project_id
location = "us-central1"
service_name = "bs-a"
Expand All @@ -81,7 +81,7 @@ module "backend-service-region-a" {

module "backend-service-region-b" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.16.3"
version = "~> 0.21.0"
project_id = var.project_id
location = "us-west1"
service_name = "bs-b"
Expand Down Expand Up @@ -141,7 +141,7 @@ resource "google_vpc_access_connector" "internal_lb_vpc_connector" {

module "frontend-service-a" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.16.3"
version = "~> 0.21.0"
project_id = var.project_id
location = "us-east1"
service_name = "fs-a"
Expand All @@ -159,7 +159,7 @@ module "frontend-service-a" {

module "frontend-service-b" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.16.3"
version = "~> 0.21.0"
project_id = var.project_id
location = "us-east1"
service_name = "fs-b"
Expand Down
4 changes: 2 additions & 2 deletions examples/internal-lb-gce-mig/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ resource "google_vpc_access_connector" "internal_lb_vpc_connector" {

module "frontend-service-a" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.16.3"
version = "~> 0.21.0"
project_id = var.project_id
location = "us-east1"
service_name = "fs-gce-a"
Expand All @@ -238,7 +238,7 @@ module "frontend-service-a" {

module "frontend-service-b" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.16.3"
version = "~> 0.21.0"
project_id = var.project_id
location = "us-east1"
service_name = "fs-gce-b"
Expand Down
Loading