diff --git a/examples/backend-with-iap/main.tf b/examples/backend-with-iap/main.tf index ce556beb..e8a250f3 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 = "~> 13.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 = "~> 13.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..4cbf3f54 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 = "~> 13.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 = "~> 13.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..f382f17d 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 = "~> 13.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..ec11074d 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 = "~> 13.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..4d372b71 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 = "~> 13.0" name = "tf-cr-lb-1" project = var.project_id diff --git a/examples/cloudrun/main.tf b/examples/cloudrun/main.tf index cea30981..cfee6cdf 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 = "~> 13.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..2778690e 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 = "~> 13.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..5577d562 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 = "~> 13.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..16a418b6 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 = "~> 13.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 = "~> 13.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..0bfca1e1 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 = "~> 13.0" project = var.project name = var.name diff --git a/examples/https-redirect/main.tf b/examples/https-redirect/main.tf index 1f84246a..3725e135 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 = "~> 13.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..458692d7 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 = "~> 13.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 = "~> 13.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..f71b7a5a 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 = "~> 13.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..cfef5e6f 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 = "~> 13.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 = "~> 13.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..534c1a58 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 = "~> 13.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..fe2c7c22 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 = "~> 13.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..7275dab0 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 = "~> 13.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..175084b8 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 = "~> 13.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..d470687a 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 = "~> 13.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..9e5c1ccc 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 = "~> 13.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..db366293 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 = "~> 13.0" name = var.network_name project = var.project_id