You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the net-lb-app-int module from the Cloud Foundation Fabric repository to configure an internal load balancer for my GCP setup. I need to configure multiple forwarding rules (one for HTTP and one for HTTPS), but the module currently does not support defining multiple forwarding rules for the same load balancer.
The current limitation can be seen in the net-lb-app-int module. However, as shown in the attached screenshot from my GCP environment, I need to configure two different frontend rules: one for HTTP (port 80) and one for HTTPS (port 443). The module should be able to handle this use case.
Current Situation:
Only one forwarding rule can be configured at a time.
Need to configure two forwarding rules (HTTP and HTTPS) for the same load balancer.
Proposed Solution:
Extend the net-lb-app-int module to support multiple forwarding rules (e.g., adding a list input for forwarding_rules to allow for multiple protocol and port combinations).
Example:
forwarding_rules=[
{
protocol ="HTTP"
port =80
},
{
protocol ="HTTPS"
port =443
}
]
Feature Request
I am using the
net-lb-app-int
module from the Cloud Foundation Fabric repository to configure an internal load balancer for my GCP setup. I need to configure multiple forwarding rules (one for HTTP and one for HTTPS), but the module currently does not support defining multiple forwarding rules for the same load balancer.The current limitation can be seen in the
net-lb-app-int
module. However, as shown in the attached screenshot from my GCP environment, I need to configure two different frontend rules: one for HTTP (port 80) and one for HTTPS (port 443). The module should be able to handle this use case.Current Situation:
Proposed Solution:
net-lb-app-int
module to support multiple forwarding rules (e.g., adding a list input forforwarding_rules
to allow for multiple protocol and port combinations).Example manual configuration:
using resources:
The text was updated successfully, but these errors were encountered: