terraform-google-lb-http
terraform-google-lb-http copied to clipboard
Creates a global HTTP load balancer for Compute Engine by using forwarding rules
This would be a better default as it makes updates easier.
When creating new http-lb, I went to a syntax/type error which is shown as below: ``` Error: Invalid value for module argument on https-lb.tf line 29, in module "gce-lb-https": 29:...
Similar to what we had to do with health checks to support Internet NEGs, it would appear that serverless NEGs cannot have a max util set. ``` Error: Error creating...
Currently, if I specify the health check port for a backend to be different to the port for the backend, no firewall rule to allow health checking on the health...
### TL;DR The other module already has the possibility to configure session_affinity. Please add this to the serverless_neg module as well. ### Terraform Resources https://github.com/terraform-google-modules/terraform-google-lb-http/blob/c5cd0d0f2210cd50581f44fafa1995f512f7d997/modules/serverless_negs/main.tf#L169-L212 ### Detailed design Add a...
This change set introduces load_balancing_scheme with a default value of EXTERNAL to maintain identical module behavior. This allows the introduction of examples and tests for Envoy-based EXTERNAL_MANAGED and INTERNAL_SELF_MANAGED global...
cannot use TCP health check for http load balancer. ### Terraform Resources ```markdown resource "google_compute_health_check" "default" { provider = google-beta for_each = local.health_checked_backends project = var.project name = "${var.name}-hc-${each.key}" check_interval_sec...
The required `backends` property is a highly nested object where everything must be explicitly set. In [my configuration](https://github.com/danielgazineu/gcp-terraform/blob/main/modules/http_accessible_mig/main.tf), because I had to set 5 of the values to custom values,...
Several properties on this module are not documented well. an example is `backends`: A huge object of dozens of properties, and none of them are documented. Luckily most are named...
Add configuration for load_balancing_scheme setting in forwarding rules and backend service configuration. Closes: terraform-google-modules/terraform-google-lb-http#257 Signed-off-by: Jonathan Yu