Philippe Dupont
Philippe Dupont

Reputation: 1

Does aws nat gateway has an equivalent in GCP?

I'd like my GCP dataflow instances to reach a public ELB in AWS without having to manage manually the ACL in the ELB security group.

I thought about redirecting my dataflow traffic through only one GCP public IP so I could restrict the AWS ELB to this IP.

I know I can do something like this in AWS using a NAT Gateway, but I can't find anything similar in GCE. Am I wrong?

I see how to deploy a logical NAT in GCE but I don't want to have a SPOF and have to manage the NAT service (which means making it HA mainly).

We also already have a vpn connection between GCE and AWS, maybe it could help?

Has someone a solution ?

Thank you

Upvotes: 0

Views: 2571

Answers (2)

Tommaso
Tommaso

Reputation: 91

What you're looking for seems Google Cloud NAT: https://cloud.google.com/nat/docs/overview

Upvotes: 0

Avinoam Meir
Avinoam Meir

Reputation: 507

Currently there is no managed NAT service in GCP. You can deploy such gateway yourself following this guide

If you want to make it high available you can deploy a few NAT gateways and use internal load balancing, with that it won't be SPOF.

Upvotes: 1

Related Questions