Load Balancer Forwarding Rule Args
data class LoadBalancerForwardingRuleArgs(val certificateId: Output<String>? = null, val certificateName: Output<String>? = null, val entryPort: Output<Int>, val entryProtocol: Output<String>, val targetPort: Output<Int>, val targetProtocol: Output<String>, val tlsPassthrough: Output<Boolean>? = null) : ConvertibleToJava<LoadBalancerForwardingRuleArgs>
Properties
Link copied to clipboard
Deprecated The ID of the TLS certificate to be used for SSL termination.
Link copied to clipboard
The unique name of the TLS certificate to be used for SSL termination.
Link copied to clipboard
The protocol used for traffic to the Load Balancer. The possible values are: http
, https
, http2
, http3
, tcp
, or udp
.
Link copied to clipboard
An integer representing the port on the backend Droplets to which the Load Balancer will send traffic.
Link copied to clipboard
The protocol used for traffic from the Load Balancer to the backend Droplets. The possible values are: http
, https
, http2
, tcp
, or udp
.
Link copied to clipboard
A boolean value indicating whether SSL encrypted traffic will be passed through to the backend Droplets. The default value is false
.