Complete the code to select the GCP load balancer type that operates at the HTTP/HTTPS layer.
load_balancer_type = "[1]"
The HTTP(S) Load Balancer in GCP operates at Layer 7 (application layer) and handles HTTP/HTTPS traffic.
Complete the code to select the GCP load balancer type best suited for TCP traffic at Layer 4.
load_balancer_type = "[1]"
The Network Load Balancer operates at Layer 4 and is suitable for TCP/UDP traffic.
Fix the error in the code to select the load balancer type that supports SSL offloading for TCP traffic.
load_balancer_type = "[1]"
The TCP Proxy Load Balancer supports SSL offloading for TCP traffic at Layer 4.
Fill both blanks to complete the code that selects the load balancer types for internal and external traffic respectively.
internal_lb = "[1]" external_lb = "[2]"
Internal Load Balancer is used for internal traffic within VPC, while HTTP(S) Load Balancer is used for external HTTP/HTTPS traffic.
Fill all three blanks to complete the code that assigns load balancer types for HTTP, TCP with SSL offload, and internal traffic respectively.
http_lb = "[1]" tcp_ssl_lb = "[2]" internal_lb = "[3]"
HTTP(S) Load Balancer handles HTTP traffic, TCP Proxy Load Balancer supports TCP with SSL offloading, and Internal Load Balancer is for internal traffic.