How to Implement TLS Interception for On-Premise Traffic in GCP
You are implementing a new web application on Google Cloud that will be accessed from your on-premises network. To provide protection from threats like malware, you must implement transport layer security (TLS) interception for incoming traffic to your application. What should you do?
Community Votes
40% of anonymous learners picked answer A. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
Tests knowledge of Cloud NGFW Enterprise capabilities and the distinction between VPC firewall rules and hierarchical firewall policies for TLS inspection.
This question tests the correct architecture for enabling TLS inspection on inbound traffic to a Google Cloud web application. The page establishes that Cloud NGFW Enterprise requires a hierarchical firewall policy to configure decryption and threat inspection.
Many candidates choose Secure Web Proxy or standard VPC firewall rules, confusing outbound proxy architectures with inbound NGFW policy enforcement.
Community Discussion (12 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Cloud Next Generation Firewall (NGFW) Enterprise is the only GCP service that supports deep packet inspection and TLS decryption at scale. However, these advanced security features cannot be applied directly to legacy VPC firewall rules. Instead, you must attach the configuration to a hierarchical firewall policy, which acts as the mandatory policy container for NGFW capabilities. This architecture ensures that decrypted traffic is inspected against threat signatures before reaching the target workload.Why the Other Options Are Wrong
Option A incorrectly combines Secure Web Proxy with load balancer offloading; Secure Web Proxy is optimized for outbound internet traffic inspection, not inbound on-premises application traffic. Option B describes a generic internal proxy load balancer, which lacks the integrated NGFW threat intelligence and centralized policy management required for enterprise-grade malware protection. Option D fails because standard VPC firewall rules are legacy constructs that do not support the NGFW policy engine needed to enable TLS interception.Community Comment Notes
The voting community was split between options A and C, with several users highlighting the official documentation link regarding NGFW TLS inspection capabilities. As one commenter noted, "you cannot enable TLS inspection for a simple firewall rule," emphasizing the strict requirement for a hierarchical policy container. Others pointed out that Secure Web Proxy is primarily designed for outbound egress traffic, confirming why option C remains the architecturally sound choice for inbound protection.Official Reference
Exam Strategy
When configuring advanced security features like TLS inspection in Cloud NGFW, always look for 'firewall policy' rather than 'VPC firewall rule'. Remember that the NGFW Enterprise tier is mandatory for deep packet inspection and traffic decryption.
Frequently Asked Questions
Why can't I enable TLS inspection on a standard VPC firewall rule?
VPC firewall rules are legacy constructs that lack the policy container needed for NGFW features. TLS inspection requires a hierarchical or global firewall policy attached to a resource node.
Is Secure Web Proxy suitable for inbound on-premises traffic?
No. Secure Web Proxy is optimized for outbound internet traffic inspection. Inbound application traffic should use Cloud NGFW policies for centralized decryption and threat prevention.