Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/lb-http/google…
Browse files Browse the repository at this point in the history
… to v11
  • Loading branch information
renovate[bot] authored Sep 13, 2024
1 parent 6726968 commit 2789b4e
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/cdn-policy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module "mig" {

module "gce-lb-http" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"

name = "mig-http-lb"
project = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/certificate-map/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ locals {

module "gce-lb-https" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"
name = var.network_name
project = var.project_id
firewall_networks = [google_compute_network.default.self_link]
Expand Down
2 changes: 1 addition & 1 deletion examples/cloudrun-implicit-serverless-neg/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "lb-http" {
source = "terraform-google-modules/lb-http/google//modules/serverless_negs"
version = "~> 10.0"
version = "~> 11.0"

name = "tf-cr-lb-1"
project = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/cloudrun/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "~> 10.0"
version = "~> 11.0"

name = var.lb_name
project = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/cross-project-mig-backend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# [START cloudloadbalancing_ext_http_gce_shared_vpc]
module "gce-lb-http" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"

name = "ci-crossproject-lb"
project = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-backend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "~> 10.0"
version = "~> 11.0"

name = "dynamic-backend-lb"
project = var.project
Expand Down
2 changes: 1 addition & 1 deletion examples/https-gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ data "google_client_config" "current" {}

module "gce-lb-https" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"

project = var.project
name = var.name
Expand Down
2 changes: 1 addition & 1 deletion examples/https-redirect/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "~> 10.0"
version = "~> 11.0"
name = "ci-https-redirect"
project = var.project
target_tags = [var.network_name]
Expand Down
2 changes: 1 addition & 1 deletion examples/mig-nat-http-lb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ module "mig" {

module "gce-lb-http" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"
name = "mig-http-lb"
project = var.project
target_tags = [var.network_name]
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-backend-multi-mig-bucket-https-lb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ locals {
# [START cloudloadbalancing_ext_http_gce_plus_bucket]
module "gce-lb-https" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"
name = var.network_name
project = var.project
target_tags = [
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-mig-http-lb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "~> 10.0"
version = "~> 11.0"
name = var.network_prefix
project = var.project
target_tags = [
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-certs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ locals {

module "gce-lb-https" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"
name = var.network_name
project = var.project
target_tags = [
Expand Down
2 changes: 1 addition & 1 deletion examples/shared-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "~> 10.0"
version = "~> 11.0"

name = "group-http-lb"
project = var.service_project
Expand Down
2 changes: 1 addition & 1 deletion examples/traffic-director/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "google_compute_network" "default" {

module "load_balancer" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"

name = "traffic-director-lb"
project = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/user-managed-google-managed-ssl/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ locals {

module "gce-lb-https" {
source = "terraform-google-modules/lb-http/google"
version = "~> 10.0"
version = "~> 11.0"

name = var.network_name
project = var.project_id
Expand Down

0 comments on commit 2789b4e

Please sign in to comment.