A global supply-chain enterprise processes proprietary partner trade records in Google Cloud. Raw telemetry and financial datasets reside in BigQuery and Cloud Storage within a dedicated analytical GCP project. The platform team must fulfill two security mandates: first, mitigate volumetric Layer 7 request floods and web application attacks targeting public API frontend services; second, guarantee that authorized internal data analysts operating within the GCP network cannot exfiltrate analytical datasets to unauthorized external Google Cloud Storage buckets or external GCP organizations. Which TWO architectural solutions must the cloud architect implement to meet these requirements?
- Configure Google Cloud Armor security policies with rate-limiting rules and web application firewall (WAF) protections attached to the External HTTP(S) Load Balancer backend services.Answer
- Establish a VPC Service Controls perimeter around the analytical project to prevent fully authenticated IAM users from moving data to storage resources outside the perimeter boundary.Answer
- CGrant fine-grained IAM roles to data analysts while relying exclusively on IAM policies to block file transfers to external buckets outside the organization.
- DAssign the primitive Editor role to compute service accounts and set up transitive VPC Network Peering to seamlessly bridge network security perimeters across partner networks.
Answer
To protect against Layer 7 application attacks and prevent internal data exfiltration, the architecture must combine Google Cloud Armor edge policies on the External HTTP(S) Load Balancer with a VPC Service Controls security perimeter around project resources containing sensitive datasets.
Combining Google Cloud Armor and VPC Service Controls fulfills both security mandates. Cloud Armor inspects incoming traffic at the edge of Google's network to mitigate Layer 7 DDoS attacks and enforce rate limiting on public endpoints. Meanwhile, VPC Service Controls creates a perimeter around GCP managed services (BigQuery and Cloud Storage) within the analytical project, ensuring that even users with legitimate IAM access cannot exfiltrate data to external storage resources outside the perimeter.
Step-by-Step Solution
Key Concept
Perimeter security defense-in-depth combining Google Cloud Armor for edge application security with VPC Service Controls for data exfiltration prevention.
Estimated Time:2m 0s