Skip to content

Commit 92bc5d1

Browse files
chore(deps): Update Terraform terraform-google-modules/lb-http/google to v13
1 parent 71cae26 commit 92bc5d1

File tree

20 files changed

+24
-24
lines changed

20 files changed

+24
-24
lines changed

examples/backend-with-iap/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "lb-backend-iap" {
1818
source = "terraform-google-modules/lb-http/google//modules/backend"
19-
version = "~> 12.0"
19+
version = "~> 13.0"
2020

2121
project_id = var.project_id
2222
name = "backend-with-iap"
@@ -28,7 +28,7 @@ module "lb-backend-iap" {
2828

2929
module "lb-frontend" {
3030
source = "terraform-google-modules/lb-http/google//modules/frontend"
31-
version = "~> 12.0"
31+
version = "~> 13.0"
3232

3333
project_id = var.project_id
3434
name = "global-lb-fe-bucket"

examples/cdn-policy/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ module "mig" {
8383

8484
module "gce-lb-http" {
8585
source = "terraform-google-modules/lb-http/google"
86-
version = "~> 12.0"
86+
version = "~> 13.0"
8787

8888
name = "mig-http-lb"
8989
project = var.project_id

examples/certificate-map/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ locals {
6565

6666
module "gce-lb-https" {
6767
source = "terraform-google-modules/lb-http/google"
68-
version = "~> 12.0"
68+
version = "~> 13.0"
6969
name = var.network_name
7070
project = var.project_id
7171
firewall_networks = [google_compute_network.default.self_link]

examples/cloudrun-implicit-serverless-neg/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "lb-http" {
1818
source = "terraform-google-modules/lb-http/google//modules/serverless_negs"
19-
version = "~> 12.0"
19+
version = "~> 13.0"
2020

2121
name = "tf-cr-lb-1"
2222
project = var.project_id

examples/cloudrun/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ provider "google-beta" {
2525
# [START cloudloadbalancing_ext_http_cloudrun]
2626
module "lb-http" {
2727
source = "terraform-google-modules/lb-http/google//modules/serverless_negs"
28-
version = "~> 12.0"
28+
version = "~> 13.0"
2929

3030
name = var.lb_name
3131
project = var.project_id

examples/cross-project-mig-backend/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# [START cloudloadbalancing_ext_http_gce_shared_vpc]
1919
module "gce-lb-http" {
2020
source = "terraform-google-modules/lb-http/google"
21-
version = "~> 12.0"
21+
version = "~> 13.0"
2222

2323
name = "ci-crossproject-lb"
2424
project = var.project_id

examples/dynamic-backend/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ resource "google_compute_managed_ssl_certificate" "frontend" {
3232

3333
module "load_balancer" {
3434
source = "terraform-google-modules/lb-http/google//modules/dynamic_backends"
35-
version = "~> 12.0"
35+
version = "~> 13.0"
3636

3737
name = "dynamic-backend-lb"
3838
project = var.project

examples/external-lb-backend-bucket/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "lb-frontend" {
1818
source = "terraform-google-modules/lb-http/google//modules/frontend"
19-
version = "~> 12.0"
19+
version = "~> 13.0"
2020

2121
project_id = var.project_id
2222
name = "global-lb-fe-bucket"
@@ -25,7 +25,7 @@ module "lb-frontend" {
2525

2626
module "lb-backend" {
2727
source = "terraform-google-modules/lb-http/google//modules/backend"
28-
version = "~> 12.0"
28+
version = "~> 13.0"
2929

3030
project_id = var.project_id
3131
name = "global-lb-be-bucket"

examples/https-gke/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ data "google_client_config" "current" {}
2626

2727
module "gce-lb-https" {
2828
source = "terraform-google-modules/lb-http/google"
29-
version = "~> 12.0"
29+
version = "~> 13.0"
3030

3131
project = var.project
3232
name = var.name

examples/https-redirect/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ module "mig" {
9393
# [START cloudloadbalancing_ext_http_gce_http_redirect]
9494
module "gce-lb-http" {
9595
source = "terraform-google-modules/lb-http/google"
96-
version = "~> 12.0"
96+
version = "~> 13.0"
9797
name = "ci-https-redirect"
9898
project = var.project
9999
target_tags = [var.network_name]

0 commit comments

Comments
 (0)