vmware-archive / terraforming-gcp

use terraform, deploy yourself a pcf
Apache License 2.0
71 stars 87 forks source link

load_balancer module needs to be refactored #134

Open vchrisb opened 5 years ago

vchrisb commented 5 years ago

PAS 2.5 does have the requirement for a second ingress https proxy to enable service mesh.

The load_balancer module does allow to create multiple regional load balancer but only one global load balancer, because the names in global.tf are hardcoded to e.g. ${var.env_name}-httpslb instead of ${var.env_name}-${var.lb_name}. Also is the usage fo count misleading for type global lb, Isolation_segment is not using the load_balancer module, tcprouter can't be made optional.

I'll look into this and try do a PR.