# External Passthrough Network Load Balancer Module This module allows managing a GCE Network Load Balancer and integrates the forwarding rule, regional backend, and optional health check resources. It's designed to be a simple match for the [`compute-vm`](../compute-vm) module, which can be used to manage instance templates and instance groups. ## Examples - [Referencing existing MIGs](#referencing-existing-migs) - [Externally manages instances](#externally-managed-instances) - [End to end example](#end-to-end-example) ### Referencing existing MIGs This example shows how to reference existing Managed Infrastructure Groups (MIGs). ```hcl module "instance_template" { source = "./fabric/modules/compute-vm" project_id = var.project_id create_template = true name = "vm-test" service_account_create = true zone = "europe-west1-b" network_interfaces = [ { network = var.vpc.self_link subnetwork = var.subnet.self_link } ] tags = [ "http-server" ] } module "mig" { source = "./fabric/modules/compute-mig" project_id = var.project_id location = "europe-west1" name = "mig-test" target_size = 1 instance_template = module.instance_template.template.self_link } module "nlb" { source = "./fabric/modules/net-lb-ext" project_id = var.project_id region = "europe-west1" name = "nlb-test" backends = [{ group = module.mig.group_manager.instance_group }] health_check_config = { http = { port = 80 } } } # tftest modules=3 resources=6 ``` ### Externally managed instances This examples shows how to create an NLB by combining externally managed instances (in a custom module or even outside of the current root module) in an unmanaged group. When using internally managed groups, remember to run `terraform apply` each time group instances change. ```hcl module "nlb" { source = "./fabric/modules/net-lb-ext" project_id = var.project_id region = "europe-west1" name = "nlb-test" group_configs = { my-group = { zone = "europe-west1-b" instances = [ "instance-1-self-link", "instance-2-self-link" ] } } backends = [{ group = module.nlb.groups.my-group.self_link }] health_check_config = { http = { port = 80 } } } # tftest modules=1 resources=4 ``` ### End to end example This example spins up a simple HTTP server and combines four modules: - [`nginx`](../cloud-config-container/nginx) from the `cloud-config-container` collection, to manage instance configuration - [`compute-vm`](../compute-vm) to manage the instance template and unmanaged instance group - this module to create a Network Load Balancer in front of the managed instance group Note that the example uses the GCE default service account. You might want to create an ad-hoc service account by combining the [`iam-service-account`](../iam-service-account) module, or by having the GCE VM module create one for you. In both cases, remember to set at least logging write permissions for the service account, or the container on the instances won't be able to start. ```hcl module "cos-nginx" { source = "./fabric/modules/cloud-config-container/nginx" } module "instance-group" { source = "./fabric/modules/compute-vm" for_each = toset(["b", "c"]) project_id = var.project_id zone = "europe-west1-${each.key}" name = "nlb-test-${each.key}" network_interfaces = [{ network = var.vpc.self_link subnetwork = var.subnet.self_link nat = false addresses = null }] boot_disk = { initialize_params = { image = "projects/cos-cloud/global/images/family/cos-stable" type = "pd-ssd" size = 10 } } tags = ["http-server", "ssh"] metadata = { user-data = module.cos-nginx.cloud_config } group = { named_ports = {} } } module "nlb" { source = "./fabric/modules/net-lb-ext" project_id = var.project_id region = "europe-west1" name = "nlb-test" ports = [80] backends = [ for z, mod in module.instance-group : { group = mod.group.self_link } ] health_check_config = { http = { port = 80 } } } # tftest modules=3 resources=7 ``` ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [name](variables.tf#L186) | Name used for all resources. | string | ✓ | | | [project_id](variables.tf#L197) | Project id where resources will be created. | string | ✓ | | | [region](variables.tf#L213) | GCP region. | string | ✓ | | | [address](variables.tf#L17) | Optional IP address used for the forwarding rule. | string | | null | | [backend_service_config](variables.tf#L23) | Backend service level configuration. | object({…}) | | {} | | [backends](variables.tf#L72) | Load balancer backends, balancing mode is one of 'CONNECTION' or 'UTILIZATION'. | list(object({…})) | | [] | | [description](variables.tf#L83) | Optional description used for resources. | string | | "Terraform managed." | | [group_configs](variables.tf#L89) | Optional unmanaged groups to create. Can be referenced in backends via outputs. | map(object({…})) | | {} | | [health_check](variables.tf#L100) | Name of existing health check to use, disables auto-created health check. | string | | null | | [health_check_config](variables.tf#L106) | Optional auto-created health check configuration, use the output self-link to set it in the auto healing policy. Refer to examples for usage. | object({…}) | | {…} | | [labels](variables.tf#L180) | Labels set on resources. | map(string) | | {} | | [ports](variables.tf#L191) | Comma-separated ports, leave null to use all ports. | list(string) | | null | | [protocol](variables.tf#L202) | IP protocol used, defaults to TCP. UDP or L3_DEFAULT can also be used. | string | | "TCP" | ## Outputs | name | description | sensitive | |---|---|:---:| | [backend_service](outputs.tf#L17) | Backend resource. | | | [backend_service_id](outputs.tf#L22) | Backend id. | | | [backend_service_self_link](outputs.tf#L27) | Backend self link. | | | [forwarding_rule](outputs.tf#L32) | Forwarding rule resource. | | | [forwarding_rule_address](outputs.tf#L37) | Forwarding rule address. | | | [forwarding_rule_self_link](outputs.tf#L42) | Forwarding rule self link. | | | [group_self_links](outputs.tf#L47) | Optional unmanaged instance group self links. | | | [groups](outputs.tf#L54) | Optional unmanaged instance group resources. | | | [health_check](outputs.tf#L59) | Auto-created health-check resource. | | | [health_check_self_id](outputs.tf#L64) | Auto-created health-check self id. | | | [health_check_self_link](outputs.tf#L69) | Auto-created health-check self link. | | | [id](outputs.tf#L74) | Fully qualified forwarding rule id. | |