According to the console dashboard the GCE is up and running, however when I try to SSH it won't connect. I used gcloud to do:
telnet <public IP address> 22
and it can't connect.
I read about the firewall rules needed and so did a gcloud compute firewall-rules list and got:
default-allow-http default 0.0.0.0/0 tcp:80 http-server
default-allow-https default 0.0.0.0/0 tcp:443 https-server
default-allow-icmp default 0.0.0.0/0 icmp
default-allow-internal default 10.128.0.0/9 tcp:0-65535,udp:0-65535,icmp
default-allow-rdp default 0.0.0.0/0 tcp:3389
default-allow-ssh default 0.0.0.0/0 tcp:22
According to the article this means the firewall isn't the issue.
Anybody have any ideas what to try next?