From 7b0bf04dc88bdc2781662d1e02b5ad0baf6a6cfe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:19:00 +0000 Subject: [PATCH] chore(deps): Update Terraform terraform-google-modules/lb-http/google to v14 --- examples/backend-with-iap/main.tf | 4 ++-- examples/backend-with-psc-negs/main.tf | 4 ++-- examples/cdn-policy/main.tf | 2 +- examples/certificate-map/main.tf | 2 +- examples/cloudrun-implicit-serverless-neg/main.tf | 2 +- examples/cloudrun/main.tf | 2 +- examples/cross-project-mig-backend/main.tf | 2 +- examples/dynamic-backend/main.tf | 2 +- examples/external-lb-backend-bucket/main.tf | 4 ++-- examples/https-gke/main.tf | 2 +- examples/https-redirect/main.tf | 2 +- examples/internal-lb-cloud-run/main.tf | 4 ++-- examples/internal-lb-gce-mig/main.tf | 2 +- examples/lb-http-separate-frontend-and-backend/main.tf | 4 ++-- examples/mig-nat-http-lb/main.tf | 2 +- examples/multi-backend-multi-mig-bucket-https-lb/main.tf | 2 +- examples/multi-mig-http-lb/main.tf | 2 +- examples/multiple-certs/main.tf | 2 +- examples/shared-vpc/main.tf | 2 +- examples/traffic-director/main.tf | 2 +- examples/user-managed-google-managed-ssl/main.tf | 2 +- 21 files changed, 26 insertions(+), 26 deletions(-) diff --git a/examples/backend-with-iap/main.tf b/examples/backend-with-iap/main.tf index ce556beb..a5405e52 100644 --- a/examples/backend-with-iap/main.tf +++ b/examples/backend-with-iap/main.tf @@ -16,7 +16,7 @@ module "lb-backend-iap" { source = "terraform-google-modules/lb-http/google//modules/backend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "backend-with-iap" @@ -28,7 +28,7 @@ module "lb-backend-iap" { module "lb-frontend" { source = "terraform-google-modules/lb-http/google//modules/frontend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "global-lb-fe-bucket" diff --git a/examples/backend-with-psc-negs/main.tf b/examples/backend-with-psc-negs/main.tf index a2467a76..1ce01b2a 100644 --- a/examples/backend-with-psc-negs/main.tf +++ b/examples/backend-with-psc-negs/main.tf @@ -123,7 +123,7 @@ module "psc-neg-subnet" { module "lb-backend-psc-neg" { source = "terraform-google-modules/lb-http/google//modules/backend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "backend-with-psc-negs" @@ -141,7 +141,7 @@ module "lb-backend-psc-neg" { module "lb-frontend" { source = "terraform-google-modules/lb-http/google//modules/frontend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "global-lb-fe-psc-neg" diff --git a/examples/cdn-policy/main.tf b/examples/cdn-policy/main.tf index 1ea26990..48e0d67a 100644 --- a/examples/cdn-policy/main.tf +++ b/examples/cdn-policy/main.tf @@ -83,7 +83,7 @@ module "mig" { module "gce-lb-http" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = "mig-http-lb" project = var.project_id diff --git a/examples/certificate-map/main.tf b/examples/certificate-map/main.tf index 51a922f0..f2248be3 100644 --- a/examples/certificate-map/main.tf +++ b/examples/certificate-map/main.tf @@ -65,7 +65,7 @@ locals { module "gce-lb-https" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = var.network_name project = var.project_id firewall_networks = [google_compute_network.default.self_link] diff --git a/examples/cloudrun-implicit-serverless-neg/main.tf b/examples/cloudrun-implicit-serverless-neg/main.tf index 06a41d94..abd06e2f 100644 --- a/examples/cloudrun-implicit-serverless-neg/main.tf +++ b/examples/cloudrun-implicit-serverless-neg/main.tf @@ -16,7 +16,7 @@ module "lb-http" { source = "terraform-google-modules/lb-http/google//modules/serverless_negs" - version = "~> 12.0" + version = "~> 14.0" name = "tf-cr-lb-1" project = var.project_id diff --git a/examples/cloudrun/main.tf b/examples/cloudrun/main.tf index cea30981..967a144f 100644 --- a/examples/cloudrun/main.tf +++ b/examples/cloudrun/main.tf @@ -25,7 +25,7 @@ provider "google-beta" { # [START cloudloadbalancing_ext_http_cloudrun] module "lb-http" { source = "terraform-google-modules/lb-http/google//modules/serverless_negs" - version = "~> 12.0" + version = "~> 14.0" name = var.lb_name project = var.project_id diff --git a/examples/cross-project-mig-backend/main.tf b/examples/cross-project-mig-backend/main.tf index 92dc7ffe..16b1b7d1 100644 --- a/examples/cross-project-mig-backend/main.tf +++ b/examples/cross-project-mig-backend/main.tf @@ -18,7 +18,7 @@ # [START cloudloadbalancing_ext_http_gce_shared_vpc] module "gce-lb-http" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = "ci-crossproject-lb" project = var.project_id diff --git a/examples/dynamic-backend/main.tf b/examples/dynamic-backend/main.tf index a82d8ba7..b892a479 100644 --- a/examples/dynamic-backend/main.tf +++ b/examples/dynamic-backend/main.tf @@ -32,7 +32,7 @@ resource "google_compute_managed_ssl_certificate" "frontend" { module "load_balancer" { source = "terraform-google-modules/lb-http/google//modules/dynamic_backends" - version = "~> 12.0" + version = "~> 14.0" name = "dynamic-backend-lb" project = var.project diff --git a/examples/external-lb-backend-bucket/main.tf b/examples/external-lb-backend-bucket/main.tf index f394f7be..360b409f 100644 --- a/examples/external-lb-backend-bucket/main.tf +++ b/examples/external-lb-backend-bucket/main.tf @@ -16,7 +16,7 @@ module "lb-frontend" { source = "terraform-google-modules/lb-http/google//modules/frontend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "global-lb-fe-bucket" @@ -25,7 +25,7 @@ module "lb-frontend" { module "lb-backend" { source = "terraform-google-modules/lb-http/google//modules/backend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "global-lb-be-bucket" diff --git a/examples/https-gke/main.tf b/examples/https-gke/main.tf index a07f7288..c01bffaa 100644 --- a/examples/https-gke/main.tf +++ b/examples/https-gke/main.tf @@ -26,7 +26,7 @@ data "google_client_config" "current" {} module "gce-lb-https" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" project = var.project name = var.name diff --git a/examples/https-redirect/main.tf b/examples/https-redirect/main.tf index 1f84246a..de3c9cd1 100644 --- a/examples/https-redirect/main.tf +++ b/examples/https-redirect/main.tf @@ -93,7 +93,7 @@ module "mig" { # [START cloudloadbalancing_ext_http_gce_http_redirect] module "gce-lb-http" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = "ci-https-redirect" project = var.project target_tags = [var.network_name] diff --git a/examples/internal-lb-cloud-run/main.tf b/examples/internal-lb-cloud-run/main.tf index 4a84ac81..d39d7233 100644 --- a/examples/internal-lb-cloud-run/main.tf +++ b/examples/internal-lb-cloud-run/main.tf @@ -94,7 +94,7 @@ module "backend-service-region-b" { module "internal-lb-http-backend" { source = "terraform-google-modules/lb-http/google//modules/backend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "int-lb-http-backend" @@ -109,7 +109,7 @@ module "internal-lb-http-backend" { module "internal-lb-http-frontend" { source = "terraform-google-modules/lb-http/google//modules/frontend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "int-lb-http-frontend" diff --git a/examples/internal-lb-gce-mig/main.tf b/examples/internal-lb-gce-mig/main.tf index b8f9a517..ce6d4eb3 100644 --- a/examples/internal-lb-gce-mig/main.tf +++ b/examples/internal-lb-gce-mig/main.tf @@ -188,7 +188,7 @@ module "internal-lb-http-backend" { module "internal-lb-http-frontend" { source = "terraform-google-modules/lb-http/google//modules/frontend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "int-lb-mig-http-frontend" diff --git a/examples/lb-http-separate-frontend-and-backend/main.tf b/examples/lb-http-separate-frontend-and-backend/main.tf index 3a25f810..e2c5a33e 100644 --- a/examples/lb-http-separate-frontend-and-backend/main.tf +++ b/examples/lb-http-separate-frontend-and-backend/main.tf @@ -69,7 +69,7 @@ module "cloud-nat-group2" { module "lb-http-backend" { source = "terraform-google-modules/lb-http/google//modules/backend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "backend-lb" @@ -111,7 +111,7 @@ module "lb-http-backend" { module "lb-http-frontend" { source = "terraform-google-modules/lb-http/google//modules/frontend" - version = "~> 12.0" + version = "~> 14.0" project_id = var.project_id name = "frontend-lb" url_map_input = module.lb-http-backend.backend_service_info diff --git a/examples/mig-nat-http-lb/main.tf b/examples/mig-nat-http-lb/main.tf index 39da944d..bfac0c66 100644 --- a/examples/mig-nat-http-lb/main.tf +++ b/examples/mig-nat-http-lb/main.tf @@ -90,7 +90,7 @@ module "mig" { module "gce-lb-http" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = "mig-http-lb" project = var.project target_tags = [var.network_name] diff --git a/examples/multi-backend-multi-mig-bucket-https-lb/main.tf b/examples/multi-backend-multi-mig-bucket-https-lb/main.tf index e32b96d3..dc3c3bd9 100644 --- a/examples/multi-backend-multi-mig-bucket-https-lb/main.tf +++ b/examples/multi-backend-multi-mig-bucket-https-lb/main.tf @@ -114,7 +114,7 @@ locals { # [START cloudloadbalancing_ext_http_gce_plus_bucket] module "gce-lb-https" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = var.network_name project = var.project target_tags = [ diff --git a/examples/multi-mig-http-lb/main.tf b/examples/multi-mig-http-lb/main.tf index 380d8e6c..169ef3a9 100644 --- a/examples/multi-mig-http-lb/main.tf +++ b/examples/multi-mig-http-lb/main.tf @@ -70,7 +70,7 @@ module "cloud-nat-group2" { # [START cloudloadbalancing_ext_http_gce] module "gce-lb-http" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = var.network_prefix project = var.project target_tags = [ diff --git a/examples/multiple-certs/main.tf b/examples/multiple-certs/main.tf index 3915ad26..81acaab1 100644 --- a/examples/multiple-certs/main.tf +++ b/examples/multiple-certs/main.tf @@ -119,7 +119,7 @@ locals { module "gce-lb-https" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = var.network_name project = var.project target_tags = [ diff --git a/examples/shared-vpc/main.tf b/examples/shared-vpc/main.tf index 17ee2153..e8405eab 100644 --- a/examples/shared-vpc/main.tf +++ b/examples/shared-vpc/main.tf @@ -27,7 +27,7 @@ provider "google-beta" { # [START cloudloadbalancing_ext_http_gce_shared_vpc] module "gce-lb-http" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = "group-http-lb" project = var.service_project diff --git a/examples/traffic-director/main.tf b/examples/traffic-director/main.tf index d224b61a..44731632 100644 --- a/examples/traffic-director/main.tf +++ b/examples/traffic-director/main.tf @@ -29,7 +29,7 @@ resource "google_compute_network" "default" { module "load_balancer" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = "traffic-director-lb" project = var.project_id diff --git a/examples/user-managed-google-managed-ssl/main.tf b/examples/user-managed-google-managed-ssl/main.tf index 30d33e6a..6f83b41d 100644 --- a/examples/user-managed-google-managed-ssl/main.tf +++ b/examples/user-managed-google-managed-ssl/main.tf @@ -65,7 +65,7 @@ locals { module "gce-lb-https" { source = "terraform-google-modules/lb-http/google" - version = "~> 12.0" + version = "~> 14.0" name = var.network_name project = var.project_id