Skip to content

zefdelgadillo/terraform-google-lb-internal

 
 

Repository files navigation

Internal Load Balancer Terraform Module

Modular Internal Load Balancer for GCE using forwarding rules.

Compatibility

This module is meant for use with Terraform 0.12. If you haven't upgraded and need a Terraform 0.11.x-compatible version of this module, the last released version intended for Terraform 0.11.x is 1.0.4.

Upgrading

The current version is 2.X. The following guides are available to assist with upgrades:

Usage

module "gce-ilb" {
  source       = "terraform-google-modules/lb-internal/google"
  version      = "~> 2.0"
  region       = var.region
  name         = "group2-ilb"
  ports        = ["80"]
  health_check = var.health_check
  source_tags  = ["allow-group1"]
  target_tags  = ["allow-group2", "allow-group3"]
  backends     = [
    { group = module.mig2.instance_group, description = "" },
    { group = module.mig3.instance_group, description = "" },
  ]
}

Resources created

About

Modular Internal Load Balancer for GCE using forwarding rules.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HCL 68.7%
  • Ruby 16.7%
  • Makefile 14.6%