InlineLbSslModeSelectionAction1

InlineLbSslModeSelectionAction1
InlineLbSslModeSelectionAction1
JSON Example
{
    "ssl_mode": "string"
}
string
ssl_mode
Required

SSL Passthrough: LB establishes a TCP connection with client and another connection with selected backend server. LB won't inspect the stream data between client and backend server, but just pass it through. Backend server exchanges SSL connection with client. SSL Offloading: LB terminiates the connections from client, and establishes SSL connection with it. After receiving the HTTP request, LB connects the selected backend server and talk with it via HTTP without SSL. LB estalishes new connection to selected backend server for each HTTP request, in case server_keep_alive or multiplexing are NOT configured. SSL End-to-End: LB terminiates the connections from client, and establishes SSL connection with it. After receiving the HTTP request, LB connects the selected backend server and talk with it via HTTPS. LB estalishes new SSL connection to selected backend server for each HTTP request, in case server_keep_alive or multiplexing are NOT configured.

Possible values are : SSL_PASSTHROUGH, SSL_END_TO_END, SSL_OFFLOAD,