2019 : Networking secrets in Google cloud

Docker Turtle
1 min readJun 20, 2019

--

  1. Private Google Access enables VM instances with only internal (private) IP addresses (no external IP addresses) to reach the public IP addresses of Google Services
  2. The DNS records for Google APIs and services always point to external IP addresses.
  3. Private Google access : allow VMs with internal IP addresses to reach the external IP addresses of Google APIs and services.
  4. The traffic path from VM that is using Private Google Access to the Google APIs remains within Google’s network.
  5. Private Google Access requires a default internet gateway route.
  6. Look for a route whose destination is 0.0.0.0/0 and whose next hop is default internet gateway.
  7. Stackdriver Logging captures all API requests made from VM instances.
  8. Log entries identify the source of API request using Private IP of VM.
  9. Enabling or disabling Private Google Access has no effect on instances with External IP addresses.
  10. With Private Google Access turned off, the default internet gateway route only applies to instances that have external IP addresses.
  11. When you enable Private Google Access for a subnet, instances in the subnet use the route to send traffic to Google APIs and GCP services.

--

--

No responses yet