Google Cloud External IP

Hi,

Is it possible to get an external ip with the Balancer on GCE ?
I know I should use NAT etc. but as I protect all with the GCE firewall it makes things a lot simpler to use external ip.
Thanks

G

In cas someone else need it I got it from support and it works :slight_smile:

In: \Repository\cloud\Google\Google.py - line 341

Replace

'network': '%s/projects/%s/global/networks/%s' % (GCE_URL, project, network )

by

'network': '%s/projects/%s/global/networks/%s' % (GCE_URL, project, network ), 'accessConfigs': [{ 'name': 'ephemeral' }] }],
and restart the Balancer.