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
4 changes: 2 additions & 2 deletions examples/backend-with-iap/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/backend-with-psc-negs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

name = "dynamic-backend-lb"
project = var.project
Expand Down
4 changes: 2 additions & 2 deletions examples/external-lb-backend-bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"
name = "ci-https-redirect"
project = var.project
target_tags = [var.network_name]
Expand Down
4 changes: 2 additions & 2 deletions examples/internal-lb-cloud-run/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/internal-lb-gce-mig/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/lb-http-separate-frontend-and-backend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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