terraform-google-lb-http icon indicating copy to clipboard operation
terraform-google-lb-http copied to clipboard

Creates a global HTTP load balancer for Compute Engine by using forwarding rules

Results 88 terraform-google-lb-http issues
Sort by recently updated
recently updated
newest added

### TL;DR Terraform's best practices [specifically state to not constrain the maximum version](https://developer.hashicorp.com/terraform/language/expressions/version-constraints#terraform-core-and-provider-versions) of providers in shared/reusable modules. It causes such an unnecessary headache - please stop doing this! >...

bug

The `target_http_proxy` resource depends on the `google_compute_url_map` resource, so Terraform attempts to update the `url_map` first when changes occur. If a custom `url_map` is added, the module tries to delete...

### TL;DR I can't get this module to locate an existing SSL policy defined by Terraform. ### Expected behavior I have a Terraform resource that is creating a security policy...

bug
Stale

### TL;DR The `health_check` defined for each backend was made optional in version 11.0 HOWEVER the module still attempts to create a `google_compute_firewall` rule for the non existent `health_check`. The...

bug
Stale

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [terraform-google-modules/vm/google](https://registry.terraform.io/modules/terraform-google-modules/vm/google) ([source](https://redirect.github.com/terraform-google-modules/terraform-google-vm)) | module | major | `~> 12.0` -> `~> 13.0` |...

dependencies

Currently, the [serverless_negs](https://github.com/terraform-google-modules/terraform-google-lb-http/tree/master/modules/serverless_negs) module creates the `google_compute_backend_service` resource. This is where `google_compute_health_check` resources should be attached, however, this interface isn't exposed via `var.backends`. This PR allows invokers of the `serverless_negs`...

This PR adds the "https_redirect_domains" list variable, serving as an allowlist of valid hosts for HTTP requests that will be redirected to HTTPS. HTTP requests with a host header not...