Topic: Google Cloud Network Engineer topic 1 question 88

You need to create the network infrastructure to deploy a highly available web application in the us-east1 and us-west1 regions. The application runs on Compute Engine instances, and it does not require the use of a database. You want to follow Google-recommended practices. What should you do?

A.
Create one VPC with one subnet in each region.Create a regional network load balancer in each region with a static IP address.Enable Cloud CDN on the load balancers.Create an A record in Cloud DNS with both IP addresses for the load balancers.
B.
Create one VPC with one subnet in each region.Create a global load balancer with a static IP address.Enable Cloud CDN and Google Cloud Armor on the load balancer.Create an A record using the IP address of the load balancer in Cloud DNS.
C.
Create one VPC in each region, and peer both VPCs.Create a global load balancer.Enable Cloud CDN on the load balancer.Create a CNAME for the load balancer in Cloud DNS.
D.
Create one VPC with one subnet in each region.Create an HTTP(S) load balancer with a static IP address.Choose the standard tier for the network.Enable Cloud CDN on the load balancer.Create a CNAME record using the load balancer’s IP address in Cloud DNS.

Re: Google Cloud Network Engineer topic 1 question 88

D would have been correct if it did not have the Standard network tiering. Remember, standard network tier:

Network services such as Cloud Load Balancing are regional (one VIP per region) - https://cloud.google.com/network-tiers

C doesn't make sense - You don't need peering with GSLB. This leaves 1 and 2. You need GSLB for CDN. Hence that eliminates A.

Re: Google Cloud Network Engineer topic 1 question 88

option D is the correct answer as it suggests creating one VPC with one subnet in each region and using a global HTTP(S) load balancer with Cloud CDN enabled. This follows the Google-recommended practice of having a VPC in each region for higher availability and lower latency, while also providing global load balancing and CDN acceleration for the web application.

Re: Google Cloud Network Engineer topic 1 question 88

Wrong - cannot use CDN with Standard tier

Re: Google Cloud Network Engineer topic 1 question 88

Option A is incorrect because it suggests using a regional network load balancer in each region, which would not provide global load balancing across both regions. Also, Cloud CDN cannot be enabled on regional load balancers, only on global load balancers.
Option B is incorrect because it suggests using a global load balancer, which would not require a VPC in each region. However, this does not follow the recommended practice of having a VPC in each region for higher availability and lower latency. Also, Cloud CDN and Google Cloud Armor can only be enabled on global HTTP(S) load balancers, not on network load balancers.

Re: Google Cloud Network Engineer topic 1 question 88

Option C is incorrect because it suggests peering two VPCs in each region, which is not necessary for deploying a highly available web application in multiple regions. Also, Cloud CDN can only be enabled on global HTTP(S) load balancers, not on network load balancers. Lastly, creating a CNAME record for the load balancer is not recommended as it adds extra DNS resolution steps and can negatively impact performance.

Re: Google Cloud Network Engineer topic 1 question 88

Where did you read that Google suggest to have one VPC for each region for HA?
Anyways, also in D you have just 1 VPC with 2 regional subnet

Re: Google Cloud Network Engineer topic 1 question 88

Same Opinion for me:
https://cloud.google.com/load-balancing/docs/load-balancing-overview?hl=en
"Cloud CDN is supported with the global external HTTP(S) load balancer and the global external HTTP(S) load balancer (classic)."
So we need a HTTP/S Loadbalancer

Re: Google Cloud Network Engineer topic 1 question 88

•    B. Create one VPC with one subnet in each region.
Create a global load balancer ***** with a static IP address.
Enable Cloud CDN and Google Cloud Armor on the load balancer.
Create an A record using the IP address of the load balancer in Cloud DNS.

Re: Google Cloud Network Engineer topic 1 question 88

B as you need Global Load Balancer across multiple Regions.

Re: Google Cloud Network Engineer topic 1 question 88

B is 100% correct based on given scenario.

Re: Google Cloud Network Engineer topic 1 question 88

100% B.

Re: Google Cloud Network Engineer topic 1 question 88

100% B.

https://cloud.google.com/solutions/best-practices-compute-engine-region-selection#distributed_frontend_and_backend_in_multiple_regions

Re: Google Cloud Network Engineer topic 1 question 88

Its B not C